home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 400-499 / ff448.lzh / Mkid / src / bool.h < prev    next >
Text File  |  1991-02-01  |  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.