examples/multi-single.c: remove WAITMS()
As it isn't used. Reported-by: Melroy van den Berg Fixes #8200 Closes #8201
This commit is contained in:
Родитель
a4d9876c31
Коммит
e1b04106f8
|
@ -34,15 +34,6 @@
|
|||
/* curl stuff */
|
||||
#include <curl/curl.h>
|
||||
|
||||
#ifdef _WIN32
|
||||
#define WAITMS(x) Sleep(x)
|
||||
#else
|
||||
/* Portable sleep for platforms other than Windows. */
|
||||
#define WAITMS(x) \
|
||||
struct timeval wait = { 0, (x) * 1000 }; \
|
||||
(void)select(0, NULL, NULL, NULL, &wait)
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Simply download a HTTP file.
|
||||
*/
|
||||
|
|
Загрузка…
Ссылка в новой задаче