blob: 4310cfb24152fc9faa930332c27dd0bed8436d40 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
/* ISC license. */
#include <skalibs/nonposix.h>
#include <skalibs/fcntl.h>
#include <skalibs/djbunix.h>
int openc_write (char const *fn)
{
return open2(fn, O_WRONLY | O_NONBLOCK | O_CLOEXEC) ;
}
|