summaryrefslogtreecommitdiff
path: root/src/libunixonacid/open_writeat.c
blob: 9206f087aebe9b178c74ddd7e7f05665fd30e1f4 (plain)
1
2
3
4
5
6
7
8
9
/* ISC license. */

#include <skalibs/fcntl.h>
#include <skalibs/unix-transactional.h>

int open_writeat (int fd, char const *name)
{
  return open2_at(fd, name, O_WRONLY | O_NONBLOCK) ;
}