blob: ca39160fef609f9d35e40a0a146a5162ef7943a6 (
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 openc_trunc (char const *fn)
{
return open3(fn, O_WRONLY | O_NONBLOCK | O_TRUNC | O_CREAT | O_CLOEXEC, 0666) ;
}
|