summaryrefslogtreecommitdiff
path: root/src/libstddjb/ndelay_on.c
blob: 2a899b8089f2c2627fbf193a8a1db247b63c09d3 (plain)
1
2
3
4
5
6
7
8
9
10
/* ISC license. */

#include <skalibs/fcntl.h>
#include <skalibs/djbunix.h>

int ndelay_on (int fd)
{
  int got = fcntl(fd, F_GETFL) ;
  return got < 0 ? got : got & O_NONBLOCK ? 0 : fcntl(fd, F_SETFL, got | O_NONBLOCK) ;
}