home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / gnu / g__inc / bool.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-23  |  115 b   |  11 lines

  1.  
  2. #ifndef _bool_h
  3. #ifdef __GNUG__
  4. #pragma once
  5. #endif
  6. #define _bool_h 1
  7.  
  8. enum bool { FALSE = 0, TRUE = 1 };
  9.  
  10. #endif
  11.