diff options
author | Rob Landley <rob@landley.net> | 2006-03-09 22:21:20 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-03-09 22:21:20 +0000 |
commit | 1f305dc0fdb8415c9c1321e49cc194089e58c456 (patch) | |
tree | a176d02a50d900a5dc610266d920c5efc65c3e1e /include | |
parent | 3a324754f88b913091eca8970c686f2e998028a9 (diff) | |
download | busybox-1f305dc0fdb8415c9c1321e49cc194089e58c456.tar.gz |
Portability patch from rfelker. The bb_asprintf.c thing needs an eventual
follow up in platform.h to set the #ifdef, but the workaround works for
everybody, so...
Diffstat (limited to 'include')
-rw-r--r-- | include/inet_common.h | 2 | ||||
-rw-r--r-- | include/libbb.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/inet_common.h b/include/inet_common.h index afea5deaa..f330aa90f 100644 --- a/include/inet_common.h +++ b/include/inet_common.h @@ -11,7 +11,7 @@ #include <features.h> #include <sys/types.h> #include <sys/socket.h> -#include <arpa/inet.h> +#include <netinet/in.h> extern const char bb_INET_default[]; /* = "default" */ diff --git a/include/libbb.h b/include/libbb.h index bc3fa5990..0490ee35f 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -20,6 +20,7 @@ #include <stdint.h> #include <netdb.h> +#include <netinet/in.h> #include <features.h> |