aboutsummaryrefslogtreecommitdiff
path: root/networking/libiproute/iproute.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-06-02 20:53:38 +0000
committerRob Landley <rob@landley.net>2006-06-02 20:53:38 +0000
commitecae66ac16338d8cddb55e1782ebd8c5f670ff53 (patch)
treeec67cd4591e5730790172f99eefd519ad7985e58 /networking/libiproute/iproute.c
parentff97ee9abda67ac0b85e0dc97a3d78ee85071cbf (diff)
downloadbusybox-w32-ecae66ac16338d8cddb55e1782ebd8c5f670ff53.tar.gz
busybox-w32-ecae66ac16338d8cddb55e1782ebd8c5f670ff53.tar.bz2
busybox-w32-ecae66ac16338d8cddb55e1782ebd8c5f670ff53.zip
Header cleanup: don't #include headers that libbb.h already includes.
Diffstat (limited to 'networking/libiproute/iproute.c')
-rw-r--r--networking/libiproute/iproute.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/networking/libiproute/iproute.c b/networking/libiproute/iproute.c
index a67bc2e44..6052a3023 100644
--- a/networking/libiproute/iproute.c
+++ b/networking/libiproute/iproute.c
@@ -13,9 +13,10 @@
13 * Kunihiro Ishiguro <kunihiro@zebra.org> 001102: rtnh_ifindex was not initialized 13 * Kunihiro Ishiguro <kunihiro@zebra.org> 001102: rtnh_ifindex was not initialized
14 */ 14 */
15 15
16#include "libbb.h"
17
16#include <sys/socket.h> 18#include <sys/socket.h>
17 19
18#include <stdlib.h>
19#include <string.h> 20#include <string.h>
20#include <fcntl.h> 21#include <fcntl.h>
21#include <unistd.h> 22#include <unistd.h>
@@ -24,8 +25,6 @@
24#include "utils.h" 25#include "utils.h"
25#include "ip_common.h" 26#include "ip_common.h"
26 27
27#include "libbb.h"
28
29#ifndef RTAX_RTTVAR 28#ifndef RTAX_RTTVAR
30#define RTAX_RTTVAR RTAX_HOPS 29#define RTAX_RTTVAR RTAX_HOPS
31#endif 30#endif