From baa77ec13bde1625213aa41fbc98001db08df5b7 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 17 May 2002 07:57:13 +0000 Subject: FreeBSD needs sys/types.h before we include sys/select.h that was included mainly for AIX in the first place...! As reported in bug report #556869 --- src/writeout.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/writeout.c b/src/writeout.c index 343e96ffc..bf7393799 100644 --- a/src/writeout.c +++ b/src/writeout.c @@ -26,6 +26,9 @@ #include #include +#ifdef HAVE_SYS_TYPES_H +#include +#endif #ifdef HAVE_SYS_SELECT_H #include #endif -- cgit v1.2.3