aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2007-04-03 15:35:19 +0000
committerYang Tse <yangsita@gmail.com>2007-04-03 15:35:19 +0000
commitf1b4f5e2ae0150d9ec0a666f4bbde8988bac9e29 (patch)
tree76cb80b9b986fe7e3b61ab353b3ba16e82b2c300 /src/main.c
parentbcf0af9ddb9dd0225017805d18a0b0b4a5236f7a (diff)
fix MSDOS symbol check
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 1d9a8dc01..f9a13e0af 100644
--- a/src/main.c
+++ b/src/main.c
@@ -2794,7 +2794,7 @@ static void go_sleep(long ms)
#ifdef WIN32
/* Windows offers a millisecond sleep */
Sleep(ms);
-#elif defined(__MSDOS__)
+#elif defined(MSDOS)
delay(ms);
#else
/* Other systems must use select() for this */