aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-03-25 06:04:58 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-03-25 06:04:58 +0000
commita1acfc8f37130fd6c251f0e6f6cd3d7cb45919ff (patch)
treed8e55cf38e3a423417655534c2283cc5461b87cf /networking
parent0c3b0d501e7f42f679add3ad28a20e1281c77475 (diff)
downloadbusybox-a1acfc8f37130fd6c251f0e6f6cd3d7cb45919ff.tar.gz
udhcp: build fix for ppc kernel 2.4.36
Diffstat (limited to 'networking')
-rw-r--r--networking/udhcp/clientsocket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/clientsocket.c b/networking/udhcp/clientsocket.c
index 0be661d4f..114200192 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