mirror of
https://github.com/curl/curl.git
synced 2026-07-24 12:27:16 +03:00
fix MSDOS symbol check
This commit is contained in:
parent
bcf0af9ddb
commit
f1b4f5e2ae
2 changed files with 4 additions and 4 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue