libowfat/open/open_write.c

8 lines
153 B
C
Raw Normal View History

2001-02-02 17:54:47 +00:00
#include <unistd.h>
#include <sys/fcntl.h>
#include "open.h"
extern int open_write(const char *filename) {
return open(filename,O_WRONLY|O_NDELAY);
}