summaryrefslogtreecommitdiff
path: root/open_write.c
blob: 531b8fee0ff9b8e16592c1690dd1e425c1038e4e (plain)
1
2
3
4
5
6
#include <sys/types.h>
#include <fcntl.h>
#include "open.h"

int open_write(char *fn)
{ return open(fn,O_WRONLY | O_NDELAY); }