home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / EMXLIB8F.ZIP / EMX / LIB / IO / REMOVE.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-02  |  201 b   |  11 lines

  1. /* remove.c (emx+gcc) -- Copyright (c) 1990-1993 by Eberhard Mattes */
  2.  
  3. #include <sys/emx.h>
  4. #include <io.h>
  5. #include <errno.h>
  6.  
  7. int remove (const char *name)
  8. {
  9.   return (__remove (name));
  10. }
  11.