diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-07-31 22:53:36 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-07-31 22:53:36 +0000 |
commit | e180b83a0ec7c7fa6192af9ea08754f0e7b6c187 (patch) | |
tree | 0e69d70188026081554b5c244a008b0b28cb3bb5 /networking | |
parent | 6d7c8e445cc2567dbbe7e66206c5e5f4f650b389 (diff) | |
download | busybox-w32-e180b83a0ec7c7fa6192af9ea08754f0e7b6c187.tar.gz busybox-w32-e180b83a0ec7c7fa6192af9ea08754f0e7b6c187.tar.bz2 busybox-w32-e180b83a0ec7c7fa6192af9ea08754f0e7b6c187.zip |
Silence some silly warnings
git-svn-id: svn://busybox.net/trunk/busybox@3175 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'networking')
-rw-r--r-- | networking/traceroute.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/networking/traceroute.c b/networking/traceroute.c index a3af5f698..f4c67cf41 100644 --- a/networking/traceroute.c +++ b/networking/traceroute.c | |||
@@ -72,6 +72,8 @@ | |||
72 | #include <string.h> | 72 | #include <string.h> |
73 | #include <unistd.h> | 73 | #include <unistd.h> |
74 | #include <sys/time.h> | 74 | #include <sys/time.h> |
75 | #include <sys/types.h> | ||
76 | #include <sys/socket.h> | ||
75 | #include <netdb.h> | 77 | #include <netdb.h> |
76 | #include <endian.h> | 78 | #include <endian.h> |
77 | #include <arpa/inet.h> | 79 | #include <arpa/inet.h> |
@@ -80,6 +82,7 @@ | |||
80 | #include <netinet/ip_icmp.h> | 82 | #include <netinet/ip_icmp.h> |
81 | 83 | ||
82 | 84 | ||
85 | |||
83 | #define MAXPACKET 65535 /* max ip packet size */ | 86 | #define MAXPACKET 65535 /* max ip packet size */ |
84 | #ifndef MAXHOSTNAMELEN | 87 | #ifndef MAXHOSTNAMELEN |
85 | #define MAXHOSTNAMELEN 64 | 88 | #define MAXHOSTNAMELEN 64 |