13{
return open(fn,O_WRONLY | O_NDELAY | O_APPEND | O_CREAT,0600); }
16{
return open(fn,O_WRONLY | O_EXCL | O_CREAT,0644); }
19{
return open(fn,O_RDONLY | O_NDELAY); }
22{
return open(fn,O_WRONLY | O_NDELAY | O_TRUNC | O_CREAT,0644); }
25{
return open(fn,O_WRONLY | O_NDELAY); }
int open_excl(const char *fn)
int open_write(const char *fn)
int open_append(const char *fn)
int open_read(const char *fn)
int open_trunc(const char *fn)