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

int open_append(fn) char *fn;
{ return open(fn,O_WRONLY | O_NDELAY | O_APPEND | O_CREAT,0600); }