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:
Daniel Stenberg 2021-12-30 12:01:57 +01:00
parent a4d9876c31
commit e1b04106f8
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -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.
*/