libowfat/open/open_rw.c
2004-02-04 23:02:35 +00:00

12 lines
194 B
C

#include <unistd.h>
#include <fcntl.h>
#include "open.h"
#ifndef O_NDELAY
#define O_NDELAY 0
#endif
int open_rw(const char *filename) {
return open(filename,O_RDWR|O_CREAT|O_NDELAY,0644);
}