home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / misc / true / true.c < prev    next >
Encoding:
Text File  |  1993-08-31  |  73 b   |  7 lines

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