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

  1. /* creat.c (emx+gcc) -- Copyright (c) 1990-1993 by Eberhard Mattes */
  2.  
  3. #include <io.h>
  4. #include <fcntl.h>
  5.  
  6. int creat (const char *name, int pmode)
  7. {
  8.   return (open (name, O_WRONLY|O_TRUNC|O_CREAT, pmode));
  9. }
  10.