Upstream qmail 1.01
[qmail] / ndelay.c
CommitLineData
2117e02e
MW
1#include <sys/types.h>
2#include <fcntl.h>
3#include "ndelay.h"
4
5int ndelay_on(fd)
6int fd;
7{
8 return fcntl(fd,F_SETFL,fcntl(fd,F_GETFL,0) | O_NDELAY);
9}