aboutsummaryrefslogtreecommitdiff
path: root/tests/libtest/lib507.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-02-20 08:51:43 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-02-20 08:51:43 +0000
commit8777ba7e42b342e13d9a39c5d6d331801cfab13b (patch)
treeeb394c8e0edec8883fe0c7194f386ca8e691e686 /tests/libtest/lib507.c
parenta39669198f4b66aca26d5fc2612a6047cf439bb4 (diff)
include sys/select.h to prevent picky compiler warnings when using select()
without proto
Diffstat (limited to 'tests/libtest/lib507.c')
-rw-r--r--tests/libtest/lib507.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/libtest/lib507.c b/tests/libtest/lib507.c
index f45169496..89591f483 100644
--- a/tests/libtest/lib507.c
+++ b/tests/libtest/lib507.c
@@ -1,5 +1,12 @@
#include "test.h"
+#ifdef HAVE_SYS_SOCKET_H
+#include <sys/socket.h>
+#endif
+#ifdef HAVE_SYS_SELECT_H
+#include <sys/select.h>
+#endif
+
int test(char *URL)
{
CURL* curls;