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/libnetlink.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/libnetlink.c')
-rw-r--r-- | networking/libiproute/libnetlink.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/networking/libiproute/libnetlink.c b/networking/libiproute/libnetlink.c index ad5bcd7..93d6d67 100644 --- a/networking/libiproute/libnetlink.c +++ b/networking/libiproute/libnetlink.c @@ -10,10 +10,10 @@ * */ +#include "libbb.h" #include <sys/socket.h> #include <errno.h> -#include <stdio.h> #include <string.h> #include <time.h> #include <unistd.h> @@ -21,7 +21,6 @@ #include <sys/uio.h> #include "libnetlink.h" -#include "libbb.h" void rtnl_close(struct rtnl_handle *rth) { |