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
Родитель a4d9876c31
Коммит e1b04106f8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 5CC908FDB71E12C2
1 изменённых файлов: 0 добавлений и 9 удалений

Просмотреть файл

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