home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / cctools / include / stuff / bool.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-15  |  134 b   |  13 lines

  1. /* bool.h */
  2. #ifndef ENUM_BOOL
  3. #define ENUM_BOOL
  4.  
  5. #undef FALSE
  6. #undef TRUE
  7. enum bool {
  8.     FALSE,
  9.     TRUE
  10. };
  11.  
  12. #endif /* ENUM_BOOL */
  13.