diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2014-11-25 08:55:17 +0100 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2014-11-25 08:55:17 +0100 |
| commit | 700843d69fd02e947e8a8d0acdf0b2ce894de57b (patch) | |
| tree | 0b983368562b4af23ab92220d13432a985c362ed | |
| parent | be1a5051890b7ad9339b0208424b94aa32c64776 (diff) | |
select.c: fix compilation for VxWorks
Reported-by: Brian
Bug: http://curl.haxx.se/bug/view.cgi?id=1455
| -rw-r--r-- | lib/select.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/select.c b/lib/select.c index bb9b8b0db..1c6481cb7 100644 --- a/lib/select.c +++ b/lib/select.c @@ -39,6 +39,10 @@ #include <dos.h> /* delay() */ #endif +#ifdef __VXWORKS__ +#include <strings.h> /* bzero() in FD_SET */ +#endif + #include <curl/curl.h> #include "urldata.h" |
