summaryrefslogtreecommitdiff
path: root/src/libstddjb/open_write.c
blob: 42a92c39e112296db1c4fbd05243b0faaeb27fda (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_write (char const *fn)
{
  return open2(fn, O_WRONLY | O_NONBLOCK) ;
}