diff options
Diffstat (limited to 'src/libstddjb/open_writecoe.c')
-rw-r--r-- | src/libstddjb/open_writecoe.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/libstddjb/open_writecoe.c b/src/libstddjb/open_writecoe.c new file mode 100644 index 0000000..d04c4c5 --- /dev/null +++ b/src/libstddjb/open_writecoe.c @@ -0,0 +1,10 @@ +/* ISC license. */ + +#include <skalibs/nonposix.h> +#include <fcntl.h> +#include <skalibs/djbunix.h> + +int open_writecoe (char const *fn) +{ + return open2(fn, O_WRONLY | O_NONBLOCK | O_CLOEXEC) ; +} |