From: Daniel Stenberg Date: Sat, 20 Nov 2004 08:57:56 +0000 (+0000) Subject: Dan Fandrich fix to compile with libc5 X-Git-Tag: curl-7_12_3~178 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1729918777a31733a8be724929378fb8e4a858b3;p=thirdparty%2Fcurl.git Dan Fandrich fix to compile with libc5 --- diff --git a/lib/select.c b/lib/select.c index 3069a0c008..8ccd47cd1d 100644 --- a/lib/select.c +++ b/lib/select.c @@ -26,6 +26,13 @@ #ifdef HAVE_SYS_SELECT_H #include #endif +#ifdef HAVE_SYS_TYPES_H +#include +#endif + +#ifdef HAVE_SYS_TIME_H +#include +#endif #ifndef HAVE_SELECT #error "We can't compile without select() support!"