diff -r 000000000000 -r 068428edee47 open_append.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/open_append.c Fri Oct 19 14:06:22 2007 +0200 @@ -0,0 +1,6 @@ +#include +#include +#include "open.h" + +int open_append(fn) char *fn; +{ return open(fn,O_WRONLY | O_NDELAY | O_APPEND | O_CREAT,0600); }