diff options
author | Rob Landley | 2006-06-02 20:53:38 +0000 |
---|---|---|
committer | Rob Landley | 2006-06-02 20:53:38 +0000 |
commit | ecae66ac16338d8cddb55e1782ebd8c5f670ff53 (patch) | |
tree | ec67cd4591e5730790172f99eefd519ad7985e58 /networking/libiproute/utils.c | |
parent | ff97ee9abda67ac0b85e0dc97a3d78ee85071cbf (diff) | |
download | busybox-ecae66ac16338d8cddb55e1782ebd8c5f670ff53.zip busybox-ecae66ac16338d8cddb55e1782ebd8c5f670ff53.tar.gz |
Header cleanup: don't #include headers that libbb.h already includes.
Diffstat (limited to 'networking/libiproute/utils.c')
-rw-r--r-- | networking/libiproute/utils.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/networking/libiproute/utils.c b/networking/libiproute/utils.c index 984f7be..3a161ea 100644 --- a/networking/libiproute/utils.c +++ b/networking/libiproute/utils.c @@ -10,13 +10,12 @@ * Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses */ -#include <stdlib.h> +#include "libbb.h" + #include <string.h> #include <unistd.h> -#include <arpa/inet.h> #include "utils.h" -#include "libbb.h" #include "inet_common.h" int get_integer(int *val, char *arg, int base) |