home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / dev / gcc / libnixV0_8.lha / gnu / libnix-sources.lha / sources / nix / extra / creat.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-12  |  153 b   |  9 lines

  1. #include <fcntl.h>
  2.  
  3. extern void __seterrno(void);
  4.  
  5. int creat(const char *path, mode_t mode)
  6. {
  7.   return open(path, O_CREAT | O_TRUNC | O_WRONLY, mode);
  8. }
  9.