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