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