blob: 5a7512014f3d1cbe316a2a41e62758638c52afa2 (
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 open_appendatb (int dirfd, char const *name)
{
int fd = open_appendat(dirfd, name) ;
if (fd < 0) return -1 ;
if (ndelay_off(fd) < 0) return -1 ;
return fd ;
}
|