libowfat/open/open_rw.c

13 lines
223 B
C
Raw Normal View History

#define _FILE_OFFSET_BITS 64
2004-02-04 23:02:35 +00:00
#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);
}