diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-05-31 22:42:12 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-05-31 22:42:12 +0000 |
commit | 9a7d38fe2448617df98ecaea7dbe6f3131088586 (patch) | |
tree | 5966d651dcb5588e24106791f9cd3647f358112b /networking/libiproute/iplink.c | |
parent | fad2b86c9e7eaadb973b50a1bc0e2accc1a96cfd (diff) | |
download | busybox-w32-9a7d38fe2448617df98ecaea7dbe6f3131088586.tar.gz busybox-w32-9a7d38fe2448617df98ecaea7dbe6f3131088586.tar.bz2 busybox-w32-9a7d38fe2448617df98ecaea7dbe6f3131088586.zip |
delete tons of extra #includes
Diffstat (limited to 'networking/libiproute/iplink.c')
-rw-r--r-- | networking/libiproute/iplink.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/networking/libiproute/iplink.c b/networking/libiproute/iplink.c index 5feab1e49..7db4d7e15 100644 --- a/networking/libiproute/iplink.c +++ b/networking/libiproute/iplink.c | |||
@@ -7,20 +7,16 @@ | |||
7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
8 | */ | 8 | */ |
9 | 9 | ||
10 | #include "libbb.h" | 10 | //#include <sys/ioctl.h> |
11 | 11 | //#include <sys/socket.h> | |
12 | #include <sys/ioctl.h> | ||
13 | #include <sys/socket.h> | ||
14 | |||
15 | #include <net/if.h> | 12 | #include <net/if.h> |
16 | #include <net/if_packet.h> | 13 | #include <net/if_packet.h> |
17 | #include <netpacket/packet.h> | 14 | #include <netpacket/packet.h> |
18 | |||
19 | #include <net/ethernet.h> | 15 | #include <net/ethernet.h> |
20 | 16 | ||
17 | #include "ip_common.h" /* #include "libbb.h" is inside */ | ||
21 | #include "rt_names.h" | 18 | #include "rt_names.h" |
22 | #include "utils.h" | 19 | #include "utils.h" |
23 | #include "ip_common.h" | ||
24 | 20 | ||
25 | /* taken from linux/sockios.h */ | 21 | /* taken from linux/sockios.h */ |
26 | #define SIOCSIFNAME 0x8923 /* set interface name */ | 22 | #define SIOCSIFNAME 0x8923 /* set interface name */ |