diff options
author | Denis Vlasenko | 2008-03-25 06:04:58 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-03-25 06:04:58 +0000 |
commit | a1acfc8f37130fd6c251f0e6f6cd3d7cb45919ff (patch) | |
tree | d8e55cf38e3a423417655534c2283cc5461b87cf | |
parent | 0c3b0d501e7f42f679add3ad28a20e1281c77475 (diff) | |
download | busybox-a1acfc8f37130fd6c251f0e6f6cd3d7cb45919ff.zip busybox-a1acfc8f37130fd6c251f0e6f6cd3d7cb45919ff.tar.gz |
udhcp: build fix for ppc kernel 2.4.36
-rw-r--r-- | networking/udhcp/clientsocket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/clientsocket.c b/networking/udhcp/clientsocket.c index 0be661d..1142001 100644 --- a/networking/udhcp/clientsocket.c +++ b/networking/udhcp/clientsocket.c @@ -22,11 +22,11 @@ */ #include <features.h> +#include <asm/types.h> #if (defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1) || defined(_NEWLIB_VERSION) #include <netpacket/packet.h> #include <net/ethernet.h> #else -#include <asm/types.h> #include <linux/if_packet.h> #include <linux/if_ether.h> #endif |