aboutsummaryrefslogtreecommitdiff
path: root/networking/libiproute/utils.c
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-06-02 20:53:38 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-06-02 20:53:38 +0000
commitee7674aa004d1bf4b89c321d99549ab59de606ab (patch)
treeec67cd4591e5730790172f99eefd519ad7985e58 /networking/libiproute/utils.c
parent53000f53a1c74411db9d2140e25e719e28b703d9 (diff)
downloadbusybox-w32-ee7674aa004d1bf4b89c321d99549ab59de606ab.tar.gz
busybox-w32-ee7674aa004d1bf4b89c321d99549ab59de606ab.tar.bz2
busybox-w32-ee7674aa004d1bf4b89c321d99549ab59de606ab.zip
Header cleanup: don't #include headers that libbb.h already includes.
git-svn-id: svn://busybox.net/trunk/busybox@15266 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-rw-r--r--networking/libiproute/utils.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/networking/libiproute/utils.c b/networking/libiproute/utils.c
index 984f7bed9..3a161ead0 100644
--- a/networking/libiproute/utils.c
+++ b/networking/libiproute/utils.c
@@ -10,13 +10,12 @@
10 * Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses 10 * Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses
11 */ 11 */
12 12
13#include <stdlib.h> 13#include "libbb.h"
14
14#include <string.h> 15#include <string.h>
15#include <unistd.h> 16#include <unistd.h>
16#include <arpa/inet.h>
17 17
18#include "utils.h" 18#include "utils.h"
19#include "libbb.h"
20#include "inet_common.h" 19#include "inet_common.h"
21 20
22int get_integer(int *val, char *arg, int base) 21int get_integer(int *val, char *arg, int base)