mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 08:08:50 -05:00
Include <dos.h> for delay() on MSDOS.
This commit is contained in:
parent
e61e09f658
commit
b7aaa4d907
@ -44,6 +44,10 @@
|
||||
#include <socket.h>
|
||||
#endif
|
||||
|
||||
#ifdef __MSDOS__
|
||||
#include <dos.h> /* delay() */
|
||||
#endif
|
||||
|
||||
#include <curl/curl.h>
|
||||
|
||||
#include "urldata.h"
|
||||
@ -149,7 +153,7 @@ int Curl_select(curl_socket_t readfd, curl_socket_t writefd, int timeout_ms)
|
||||
#ifdef WIN32
|
||||
Sleep(timeout_ms);
|
||||
#elif defined(__MSDOS__)
|
||||
delay(ms);
|
||||
delay(timeout_ms);
|
||||
#else
|
||||
select(0, NULL, NULL, NULL, &timeout);
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user