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

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