From: Daniel Stenberg Date: Tue, 25 Nov 2014 07:55:17 +0000 (+0100) Subject: select.c: fix compilation for VxWorks X-Git-Tag: curl-7_40_0~303 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=700843d69fd02e947e8a8d0acdf0b2ce894de57b;p=thirdparty%2Fcurl.git select.c: fix compilation for VxWorks Reported-by: Brian Bug: http://curl.haxx.se/bug/view.cgi?id=1455 --- diff --git a/lib/select.c b/lib/select.c index bb9b8b0db3..1c6481cb75 100644 --- a/lib/select.c +++ b/lib/select.c @@ -39,6 +39,10 @@ #include /* delay() */ #endif +#ifdef __VXWORKS__ +#include /* bzero() in FD_SET */ +#endif + #include #include "urldata.h"