/* ISC license. */ #include #include int openc_truncatb (int dirfd, char const *name) { int fd = openc_truncat(dirfd, name) ; if (fd == -1) return -1 ; if (ndelay_off(fd) == -1) { fd_close(fd) ; return -1 ; } return fd ; }