diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-03-10 12:25:32 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-03-10 12:25:32 +0000 |
commit | 8c3a10392e39c81c8d1dc561e40182bbea54e6ba (patch) | |
tree | 65fac3797565d4a7578761391febd4d2cc1a5540 /include | |
parent | d0e44946e902431f091b87513e9a6623ce384e25 (diff) |
Include sys/types.h as well. Ray DeGennaro reports successful compiling on
AIX when this fix is applied and I cannot see how this will break any
systems.
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/multi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/curl/multi.h b/include/curl/multi.h index 1d3b123a2..ac114be4d 100644 --- a/include/curl/multi.h +++ b/include/curl/multi.h @@ -51,6 +51,7 @@ #else #include <sys/socket.h> #include <sys/time.h> +#include <sys/types.h> #endif #include "curl.h" |