summaryrefslogtreecommitdiff
path: root/src/libunixonacid/open_writeatb.c
blob: 46649e823f760303a8bb28c5e596bf7bbf45e663 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ISC license. */

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

int open_writeatb (int dirfd, char const *name)
{
  int fd = open_writeat(dirfd, name) ;
  if (fd == -1) return -1 ;
  if (ndelay_off(fd) == -1)
  {
    fd_close(fd) ;
    return -1 ;
  }
  return fd ;
}