home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / g / gnu_c / gppinc22.zoo / bool.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-11-30  |  285 b   |  14 lines

  1. // Defining TRUE and FALSE is usually a Bad Idea,
  2. // because you will probably be inconsistent with anyone
  3. // else who had the same clever idea.
  4. // Therefore:  DON'T USE THIS FILE.
  5.  
  6. #ifndef _bool_h
  7. #define _bool_h 1
  8.  
  9. #undef FALSE
  10. #undef TRUE
  11. enum bool { FALSE = 0, TRUE = 1 };
  12.  
  13. #endif
  14.