Skip to content
Snippets Groups Projects
Unverified Commit fdc5ff2b authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

examples/multi-single.c: remove WAITMS()

As it isn't used.

Reported-by: Melroy van den Berg
Fixes #8200
parent a4d9876c
No related merge requests found
......@@ -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.
*/
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment