fix MSDOS symbol check

This commit is contained in:
Yang Tse 2007-04-03 15:35:19 +00:00
parent bcf0af9ddb
commit f1b4f5e2ae
2 changed files with 4 additions and 4 deletions

View file

@ -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 */