home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / gnu / libg++-2.5.3-bin.lha / lib / g++-include / bool.h < prev    next >
C/C++ Source or Header  |  1994-02-21  |  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.