diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2007-02-20 17:31:20 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2007-02-20 17:31:20 +0000 |
commit | 6014c21bc96b40eeb7a94fe7f6dbb182af0ba0ae (patch) | |
tree | c1a66d665314f30d12ba8df5fce5fc9b52cf7b37 /lib | |
parent | 8c0b1dc3c5f2de037579b59f243c92a6e5b9567d (diff) |
Include network byte order conversion macros on Minix.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/socks.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/socks.c b/lib/socks.c index cd40d37e9..f6885b81d 100644 --- a/lib/socks.c +++ b/lib/socks.c @@ -31,6 +31,9 @@ #ifdef HAVE_STDLIB_H #include <stdlib.h> #endif +#ifdef HAVE_ARPA_INET_H +#include <arpa/inet.h> +#endif #include "urldata.h" #include "sendf.h" |