libowfat/open/open_write.c

8 lines
162 B
C
Raw Normal View History

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"
extern int open_write(const char *filename) {
return open(filename,O_WRONLY|O_CREAT|O_NDELAY,0644);
2001-02-02 17:54:47 +00:00
}