home *** CD-ROM | disk | FTP | other *** search
/ Unix System Administration Handbook 1997 October / usah_oct97.iso / news / cnews.tar / libfake / remove.c < prev    next >
C/C++ Source or Header  |  1994-09-08  |  129b  |  14 lines

  1. /*
  2.  * fake ANSI C remove() function
  3.  */
  4.  
  5. int
  6. remove(file)
  7. char *file;
  8. {
  9.     if (unlink(file) < 0)
  10.         return(1);
  11.     else
  12.         return(0);
  13. }
  14.