home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / Caml Light 0.61 / Source / src / appli / rename.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-18  |  244 b   |  18 lines  |  [TEXT/MPS ]

  1. #include <StdLib.h>
  2. #include <Fcntl.h>
  3.  
  4. int mpw_read(int fd, char * p, unsigned long n)
  5. {
  6.   return read(fd, p, n);
  7. }
  8.  
  9. int mpw_write(int fd, char * p, unsigned long n)
  10. {
  11.   return write(fd, p, n);
  12. }
  13.  
  14. void mpw_exit(int status)
  15. {
  16.   exit(status);
  17. }
  18.