home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 2 / goldfish_vol2_cd1.bin / files / util / misc / true / false.c < prev    next >
Text File  |  1993-08-31  |  74b  |  7 lines

  1. /* Simple minded implementation of /bin/false. */
  2.  
  3. main ()
  4. {
  5.     exit (1);
  6. }
  7.