aboutsummaryrefslogtreecommitdiff
path: root/networking/libiproute
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-01-14 08:06:07 +0000
committerEric Andersen <andersen@codepoet.org>2003-01-14 08:06:07 +0000
commit8004bb7661bed72a5a9dde1c6a854e0931d70b47 (patch)
tree0f09d97d0cdf446c55fb843e86b3fca44981f4a1 /networking/libiproute
parente0716ba23bbf7b6ec09d7c534d5ef14d424ac6aa (diff)
downloadbusybox-8004bb7661bed72a5a9dde1c6a854e0931d70b47.tar.gz
Eliminate use of kernel header file
-Erik
Diffstat (limited to 'networking/libiproute')
-rw-r--r--networking/libiproute/ipaddress.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/networking/libiproute/ipaddress.c b/networking/libiproute/ipaddress.c
index 77368fb3c..88438179d 100644
--- a/networking/libiproute/ipaddress.c
+++ b/networking/libiproute/ipaddress.c
@@ -22,9 +22,8 @@
#include <arpa/inet.h>
-#define sysinfo kernel_sysinfo
-#include <linux/if_arp.h>
-#undef sysinfo
+#include <net/if.h>
+#include <net/if_arp.h>
#include "rt_names.h"
#include "utils.h"