home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-18.59-src.tgz / emacs-18.59-src.tar / fsf / emacs18 / amiga / unix / src / creat.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  261b  |  18 lines

  1. #include "amiga.h"
  2. #include "files.h"
  3. #include <fcntl.h>
  4.  
  5. #undef creat
  6.  
  7. int __creat(const char *file, int prot)
  8. {
  9.   chkabort();
  10.   return open(file, O_WRONLY | O_CREAT | O_TRUNC, prot);
  11. }
  12.  
  13. int creat(const char *file, int prot)
  14. {
  15.   return __creat(file, prot);
  16. }
  17.  
  18.