Upstream qmail 1.01
[qmail] / open_write.c
1 #include <sys/types.h>
2 #include <fcntl.h>
3 #include "open.h"
4
5 int open_write(fn) char *fn;
6 { return open(fn,O_WRONLY | O_NDELAY); }