blob: 83c7770694d5993da650ffac831c279e227511c9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* ISC license. */
#include <skalibs/nonposix.h>
#include <fcntl.h>
#include <skalibs/djbunix.h>
int open_excl (char const *fn)
{
return open3(fn, O_WRONLY | O_CREAT | O_EXCL | O_NONBLOCK, 0666) ;
}
|