1 /*
2  * reimplementation of Daniel Bernstein's unix library.
3  * placed in the public domain by Uwe Ohse, uwe@ohse.de.
4  */
5 #include <sys/types.h>
6 #include <fcntl.h>
7 #include "open.h"
open_readwrite_blocking(const char * fname)8 int open_readwrite_blocking(const char *fname)
9   { return open(fname,O_RDWR); }
open_readwrite(const char * fname)10 int open_readwrite(const char *fname)
11   { return open(fname,O_RDWR|O_NDELAY); }
12