/* ISC license. */ #include #include #include int ndelay_on (int fd) { register int got = fcntl(fd, F_GETFL) ; return (got == -1) ? -1 : fcntl(fd, F_SETFL, got | O_NONBLOCK) ; }