blob: 8315256c94950371dfaa715e2dfaf2b676804dd2 (
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_appendatb (int dirfd, char const *name)
{
int fd = open_appendat(dirfd, name) ;
if (fd == -1) return -1 ;
if (ndelay_off(fd) == -1)
{
fd_close(fd) ;
return -1 ;
}
return fd ;
}
|