diff options
author | Rob Landley <rob@landley.net> | 2006-03-09 22:39:08 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-03-09 22:39:08 +0000 |
commit | dae6aa28598cb2353291f18ca52e768c3259165a (patch) | |
tree | 89d64a7f3656c01ec09a1e00b4878fc3a7b2b7ba /include/inet_common.h | |
parent | 1f305dc0fdb8415c9c1321e49cc194089e58c456 (diff) | |
download | busybox-w32-dae6aa28598cb2353291f18ca52e768c3259165a.tar.gz busybox-w32-dae6aa28598cb2353291f18ca52e768c3259165a.tar.bz2 busybox-w32-dae6aa28598cb2353291f18ca52e768c3259165a.zip |
Fixup to the previous (portability) patch. Linux actually does need
arpa/inet.h rather than netinet/in.h, otherwise we get warnings.
Diffstat (limited to 'include/inet_common.h')
-rw-r--r-- | include/inet_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/inet_common.h b/include/inet_common.h index f330aa90f..aa883ed3e 100644 --- a/include/inet_common.h +++ b/include/inet_common.h | |||
@@ -11,7 +11,7 @@ | |||
11 | #include <features.h> | 11 | #include <features.h> |
12 | #include <sys/types.h> | 12 | #include <sys/types.h> |
13 | #include <sys/socket.h> | 13 | #include <sys/socket.h> |
14 | #include <netinet/in.h> | 14 | #include "platform.h" |
15 | 15 | ||
16 | 16 | ||
17 | extern const char bb_INET_default[]; /* = "default" */ | 17 | extern const char bb_INET_default[]; /* = "default" */ |