Import ezmlm 0.53
[ezmlm] / open_trunc.c
CommitLineData
5b62e993
MW
1#include <sys/types.h>
2#include <fcntl.h>
3#include "open.h"
4
5int open_trunc(fn) char *fn;
6{ return open(fn,O_WRONLY | O_NDELAY | O_TRUNC | O_CREAT,0644); }