chiark / gitweb /
Merge branches 'idx/verh' and 'idx/qmqpc'
[qmail] / open_excl.c
CommitLineData
2117e02e
MW
1#include <sys/types.h>
2#include <fcntl.h>
3#include "open.h"
4
5int open_excl(fn) char *fn;
6{ return open(fn,O_WRONLY | O_EXCL | O_CREAT,0644); }