home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume24 / mkid2 / part01 / bool.h < prev    next >
Text File  |  1991-10-09  |  128b  |  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.