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:
parent
a4d9876c31
commit
e1b04106f8
@ -34,15 +34,6 @@
|
|||||||
/* curl stuff */
|
/* curl stuff */
|
||||||
#include <curl/curl.h>
|
#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.
|
* Simply download a HTTP file.
|
||||||
*/
|
*/
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user