Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

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