home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / unixlib36d / src / stdio / c / remove < prev    next >
Encoding:
Text File  |  1994-03-08  |  239 b   |  16 lines

  1. static char sccs_id[] = "@(#) remove.c 1.1 " __DATE__ " HJR";
  2.  
  3. /* remove.c (c) Copyright 1990 H.Rogers */
  4.  
  5. #include <stdio.h>
  6.  
  7. extern int unlink (char *);
  8.  
  9. __STDIOLIB__
  10.  
  11. int
  12. remove (const char *file)
  13. {
  14.   return (unlink ((char *) file));
  15. }
  16.