home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / programm.ing / gem__1~1.zoo / gem++19 / include / bool.h next >
Encoding:
C/C++ Source or Header  |  1993-11-01  |  97 b   |  10 lines

  1. #ifndef bool_h
  2. #define bool_h
  3.  
  4. typedef int bool;
  5.  
  6. const bool TRUE=1;
  7. const bool FALSE=0;
  8.  
  9. #endif
  10.