/* ISC license. */ #include #include int open_writeatb (int dirfd, char const *name) { int fd = open_writeat(dirfd, name) ; if (fd < 0) return -1 ; if (ndelay_off(fd) < 0) return -1 ; return fd ; }