diff options
author | Dan Fandrich | 2011-06-10 05:17:59 +0200 |
---|---|---|
committer | Denys Vlasenko | 2011-06-10 05:17:59 +0200 |
commit | f533ec876716415ed0e6ba28d13dfb6263068e82 (patch) | |
tree | 30b5b8ddcad3d2673d76110b8a792a5cd1b3b067 /networking/zcip.c | |
parent | d488f5e8dbdcd1f5f0ebb2ee9c1f2fb4a5374290 (diff) | |
download | busybox-f533ec876716415ed0e6ba28d13dfb6263068e82.zip busybox-f533ec876716415ed0e6ba28d13dfb6263068e82.tar.gz |
*: simplify Ethernet header includes
Signed-off-by: Dan Fandrich <dan@coneharvesters.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/zcip.c')
-rw-r--r-- | networking/zcip.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/networking/zcip.c b/networking/zcip.c index 6b7f214..8a35eca 100644 --- a/networking/zcip.c +++ b/networking/zcip.c @@ -35,14 +35,12 @@ //usage: "\nWith no -q, runs continuously monitoring for ARP conflicts," //usage: "\nexits only on I/O errors (link down etc)" +#include "libbb.h" #include <netinet/ether.h> -#include <net/ethernet.h> #include <net/if.h> #include <net/if_arp.h> -#include <linux/if_packet.h> #include <linux/sockios.h> -#include "libbb.h" #include <syslog.h> /* We don't need more than 32 bits of the counter */ |