libowfat/open/open_write.c

13 lines
228 B
C
Raw Normal View History

#define _FILE_OFFSET_BITS 64
2001-02-02 17:54:47 +00:00
#include <unistd.h>
2003-10-10 17:13:38 +00:00
#include <fcntl.h>
2001-02-02 17:54:47 +00:00
#include "open.h"
#ifndef O_NDELAY
#define O_NDELAY 0
#endif
int open_write(const char *filename) {
return open(filename,O_WRONLY|O_CREAT|O_NDELAY,0644);
2001-02-02 17:54:47 +00:00
}