home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 3 / RISC_DISC_3.iso / resources / etexts / gems / gemsv / ch7_7 / libgm / bool.h next >
C/C++ Source or Header  |  1995-03-07  |  195b  |  14 lines

  1. // bool.h - boolean type
  2. //
  3. // libgm++: Graphics Math Library
  4. // Ferdi Scheepers and Stephen F May
  5. // 15 June 1994
  6.  
  7. #ifndef BOOL_H
  8. #define BOOL_H
  9.  
  10. typedef int bool;
  11. enum { false, true };
  12.  
  13. #endif
  14.