diff options
author | Rob Landley <rob@landley.net> | 2006-06-18 20:20:07 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-06-18 20:20:07 +0000 |
commit | ea224be6aa8fed5486376d3021a4cb911e935106 (patch) | |
tree | 38d6c5d2d53841e3f4e2702521e3b03235c51017 /networking | |
parent | 14d7065ef1eb836d20e13bc25d1b13f0e76185ac (diff) | |
download | busybox-ea224be6aa8fed5486376d3021a4cb911e935106.tar.gz |
skip_whitespace() shouldn't claim its return value is const, it doesn't know
that and callers wind up typecasting it back.
Diffstat (limited to 'networking')
-rw-r--r-- | networking/libiproute/ll_proto.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/networking/libiproute/ll_proto.c b/networking/libiproute/ll_proto.c index 9ee5ab23f..2319530ad 100644 --- a/networking/libiproute/ll_proto.c +++ b/networking/libiproute/ll_proto.c @@ -9,8 +9,7 @@ * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> */ -#include <stdio.h> -#include <arpa/inet.h> +#include "libbb.h" #include <string.h> #include "rt_names.h" |