Deleted Added
full compact
32a33,41
> /*
> * Define FNDELAY and FASYNC using O_NONBLOCK and O_ASYNC if we need
> * to (and can). This is here initially for QNX, but may help for
> * others as well...
> */
> #ifndef FNDELAY
> # ifdef O_NONBLOCK
> # define FNDELAY O_NONBLOCK
> # endif
33a43,50
>
> #ifndef FASYNC
> # ifdef O_ASYNC
> # define FASYNC O_ASYNC
> # endif
> #endif
>
> #endif