home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2GNU / LGP271B.ZIP / lang / cxx / bool.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-26  |  623 b   |  21 lines

  1. #ifndef __GNUC__
  2. /*
  3.  *
  4.  * Copyright (c) 1994
  5.  * Hewlett-Packard Company
  6.  *
  7.  * Permission to use, copy, modify, distribute and sell this software
  8.  * and its documentation for any purpose is hereby granted without fee,
  9.  * provided that the above copyright notice appear in all copies and
  10.  * that both that copyright notice and this permission notice appear
  11.  * in supporting documentation.  Hewlett-Packard Company makes no
  12.  * representations about the suitability of this software for any
  13.  * purpose.  It is provided "as is" without express or implied warranty.
  14.  *
  15.  */
  16.  
  17. #define bool int
  18. #define true 1
  19. #define false 0
  20. #endif
  21.