blob: 63ffa58398f3da7fb76b31210602ce9d38cad841 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* ISC license. */
#include <fcntl.h>
#include <skalibs/djbunix.h>
int ndelay_on (int fd)
{
int got = fcntl(fd, F_GETFL) ;
return (got == -1) ? -1 : fcntl(fd, F_SETFL, got | O_NONBLOCK) ;
}
|