home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / useful / dist / util / misc / true / true.c < prev    next >
Text File  |  1993-08-31  |  73b  |  7 lines

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