From 8777ba7e42b342e13d9a39c5d6d331801cfab13b Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 20 Feb 2004 08:51:43 +0000 Subject: include sys/select.h to prevent picky compiler warnings when using select() without proto --- tests/libtest/lib503.c | 3 +++ tests/libtest/lib504.c | 3 +++ tests/libtest/lib507.c | 7 +++++++ tests/libtest/lib509.c | 3 +++ 4 files changed, 16 insertions(+) (limited to 'tests/libtest') diff --git a/tests/libtest/lib503.c b/tests/libtest/lib503.c index f74ad3f38..2e4f74232 100644 --- a/tests/libtest/lib503.c +++ b/tests/libtest/lib503.c @@ -5,6 +5,9 @@ #endif #include #include +#ifdef HAVE_SYS_SELECT_H +#include +#endif /* * Source code in here hugely as reported in bug report 651460 by diff --git a/tests/libtest/lib504.c b/tests/libtest/lib504.c index 7133fc6df..269c1a231 100644 --- a/tests/libtest/lib504.c +++ b/tests/libtest/lib504.c @@ -5,6 +5,9 @@ #endif #include #include +#ifdef HAVE_SYS_SELECT_H +#include +#endif /* * Source code in here hugely as reported in bug report 651464 by 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 +#endif +#ifdef HAVE_SYS_SELECT_H +#include +#endif + int test(char *URL) { CURL* curls; diff --git a/tests/libtest/lib509.c b/tests/libtest/lib509.c index d1f32e7c6..84c4ee5de 100644 --- a/tests/libtest/lib509.c +++ b/tests/libtest/lib509.c @@ -7,6 +7,9 @@ #endif #include #include +#ifdef HAVE_SYS_SELECT_H +#include +#endif #include #include -- cgit v1.2.3