unix: change #if FIONBIO to #ifdef FIONBIO

Fixes compilation on Debian/ppc 6.0.4.
This commit is contained in:
Frank Denis 2012-05-16 07:21:15 -07:00 committed by Ben Noordhuis
parent ad024040fc
commit 07622e767d

View File

@ -480,7 +480,7 @@ int uv__accept(int sockfd, struct sockaddr* saddr, socklen_t slen) {
int uv__nonblock(int fd, int set) {
#if FIONBIO
#ifdef FIONBIO
return ioctl(fd, FIONBIO, &set);
#else
int flags;