blob: 5b9408c0df20dc4240523afff162252152aebceb (
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 openc_writeatb (int dirfd, char const *name)
{
int fd = openc_writeat(dirfd, name) ;
if (fd == -1) return -1 ;
if (ndelay_off(fd) == -1)
{
fd_close(fd) ;
return -1 ;
}
return fd ;
}
|