home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 387b.lha / dice_v2.02 / lib / stdio / remove.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-30  |  238 b   |  21 lines

  1.  
  2. /*
  3.  *  REMOVE.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #include <stdio.h>
  9. #include <errno.h>
  10.  
  11. int
  12. remove(name)
  13. const char *name;
  14. {
  15.     if (DeleteFile(name))
  16.     return(0);
  17.     errno = ENOFILE;
  18.     return(-1);
  19. }
  20.  
  21.