home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume11 / id / part01 / bool.h < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-25  |  128 b   |  7 lines

  1. /* Copyright (c) 1986, Greg McGary */
  2. /* @(#)bool.h    1.1 86/10/09 */
  3.  
  4. typedef    int    bool;
  5. #define    TRUE    (0==0)
  6. #define    FALSE    (0!=0)
  7.