diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-05-31 22:16:38 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-05-31 22:16:38 +0000 |
commit | fad2b86c9e7eaadb973b50a1bc0e2accc1a96cfd (patch) | |
tree | f2d3fe127fb6c3c1d3b919631de6e6ed7cbc1791 /networking/libiproute | |
parent | c2f011aa031b8598422953d5e9a93ca008ad0867 (diff) |
use "glibc errno" trick not only for ash, but for entire busybox
(add/remove: 1/1 grow/shrink: 37/37 up/down: 139/-228) Total: -89 bytes
Diffstat (limited to 'networking/libiproute')
-rw-r--r-- | networking/libiproute/libnetlink.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/networking/libiproute/libnetlink.c b/networking/libiproute/libnetlink.c index 5307cec2c..0f6040977 100644 --- a/networking/libiproute/libnetlink.c +++ b/networking/libiproute/libnetlink.c @@ -11,16 +11,10 @@ * */ -#include "libbb.h" #include <sys/socket.h> - -#include <errno.h> -#include <string.h> -#include <time.h> -#include <unistd.h> - #include <sys/uio.h> +#include "libbb.h" #include "libnetlink.h" void rtnl_close(struct rtnl_handle *rth) |