summaryrefslogtreecommitdiff
path: root/docs/examples/multi-single.c
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples/multi-single.c')
-rw-r--r--docs/examples/multi-single.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/docs/examples/multi-single.c b/docs/examples/multi-single.c
index ec27da1ed..d7d1fb3ed 100644
--- a/docs/examples/multi-single.c
+++ b/docs/examples/multi-single.c
@@ -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.
*/