summaryrefslogtreecommitdiff
path: root/src/libunixonacid/openc_appendatb.c
blob: 066e6954e3eb1531948df851d403807cb6afd58f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* ISC license. */

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

int openc_appendatb (int dirfd, char const *name)
{
  int fd = openc_appendat(dirfd, name) ;
  if (fd < 0) return -1 ;
  if (ndelay_off(fd) < 0) return -1 ;
  return fd ;
}