1 /* Public domain. */
2 
3 #include <sys/types.h>
4 #include <fcntl.h>
5 #include "open.h"
6 
open_read(const char * fn)7 int open_read(const char *fn)
8 { return open(fn,O_RDONLY | O_NDELAY); }
9