home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_02 / 1002014a < prev    next >
Text File  |  1991-12-17  |  248b  |  16 lines

  1.  
  2. Listing 1 -- the file remove.c
  3.  
  4.  
  5. /* remove function -- UNIX version */
  6. #include "xstdio.h"
  7.  
  8.         /* UNIX system call */
  9. int _Unlink(const char *);
  10.  
  11. int (remove)(const char *fname)
  12.     {   /* remove a file */
  13.     return (_Unlink(fname));
  14.     }
  15.  
  16.