diff options
author | Yang Tse <yangsita@gmail.com> | 2007-04-03 15:35:19 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-04-03 15:35:19 +0000 |
commit | f1b4f5e2ae0150d9ec0a666f4bbde8988bac9e29 (patch) | |
tree | 76cb80b9b986fe7e3b61ab353b3ba16e82b2c300 /lib/select.c | |
parent | bcf0af9ddb9dd0225017805d18a0b0b4a5236f7a (diff) | |
download | curl-f1b4f5e2ae0150d9ec0a666f4bbde8988bac9e29.tar.gz |
fix MSDOS symbol check
Diffstat (limited to 'lib/select.c')
-rw-r--r-- | lib/select.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/select.c b/lib/select.c index 83484eeeb..ddc40593e 100644 --- a/lib/select.c +++ b/lib/select.c @@ -41,7 +41,7 @@ #include <socket.h> #endif -#ifdef __MSDOS__ +#ifdef MSDOS #include <dos.h> /* delay() */ #endif @@ -116,7 +116,7 @@ */ static int wait_ms(int timeout_ms) { -#if !defined(__MSDOS__) && !defined(USE_WINSOCK) +#if !defined(MSDOS) && !defined(USE_WINSOCK) #ifndef HAVE_POLL_FINE struct timeval pending_tv; #endif @@ -132,7 +132,7 @@ static int wait_ms(int timeout_ms) SET_SOCKERRNO(EINVAL); return -1; } -#if defined(__MSDOS__) +#if defined(MSDOS) delay(timeout_ms); #elif defined(USE_WINSOCK) Sleep(timeout_ms); |