/* ISC license. */ #include #include 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 ; }