nightmaremail

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

open_append.c (158B)


      1 #include <sys/types.h>
      2 #include <fcntl.h>
      3 #include "open.h"
      4 
      5 int open_append(fn) char *fn;
      6 { return open(fn,O_WRONLY | O_NDELAY | O_APPEND | O_CREAT,0600); }