diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-09-06 14:42:27 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-09-06 14:42:27 +0000 |
commit | ee34ebe966554ad6b73d150b02cc506f9318fead (patch) | |
tree | f7300b5b244fcf604e4e5be6380b4ce67cec7b36 /networking | |
parent | 9f9c1935fa6df1431e54792d67b928bf157a6d36 (diff) | |
download | busybox-w32-ee34ebe966554ad6b73d150b02cc506f9318fead.tar.gz busybox-w32-ee34ebe966554ad6b73d150b02cc506f9318fead.tar.bz2 busybox-w32-ee34ebe966554ad6b73d150b02cc506f9318fead.zip |
ifenslave: wants net/if.h
Diffstat (limited to 'networking')
-rw-r--r-- | networking/ifenslave.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/networking/ifenslave.c b/networking/ifenslave.c index 13a32efc8..89a3f9e80 100644 --- a/networking/ifenslave.c +++ b/networking/ifenslave.c | |||
@@ -100,14 +100,15 @@ | |||
100 | 100 | ||
101 | #include "libbb.h" | 101 | #include "libbb.h" |
102 | 102 | ||
103 | #include <net/if.h> | ||
103 | #include <net/if_arp.h> | 104 | #include <net/if_arp.h> |
104 | #include <linux/if_bonding.h> | 105 | #include <linux/if_bonding.h> |
105 | #include <linux/sockios.h> | 106 | #include <linux/sockios.h> |
106 | 107 | ||
107 | typedef unsigned long long u64; /* hack, so we may include kernel's ethtool.h */ | 108 | typedef uint64_t u64; /* hack, so we may include kernel's ethtool.h */ |
108 | typedef uint32_t u32; /* ditto */ | 109 | typedef uint32_t u32; /* ditto */ |
109 | typedef uint16_t u16; /* ditto */ | 110 | typedef uint16_t u16; /* ditto */ |
110 | typedef uint8_t u8; /* ditto */ | 111 | typedef uint8_t u8; /* ditto */ |
111 | #include <linux/ethtool.h> | 112 | #include <linux/ethtool.h> |
112 | 113 | ||
113 | 114 | ||