home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.2 (Developer) / NS_dev_3.2.iso / NextDeveloper / Headers / g++ / bool.h < prev    next >
C/C++ Source or Header  |  1993-06-29  |  285b  |  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.