aboutsummaryrefslogtreecommitdiff
path: root/libbb/inet_common.c
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-06-18 20:20:07 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-06-18 20:20:07 +0000
commitaa074b9c43f69aa62adb15e3342a0ef63f625678 (patch)
tree38d6c5d2d53841e3f4e2702521e3b03235c51017 /libbb/inet_common.c
parente4d675d55e6d97662493d5696201db55a144db5e (diff)
downloadbusybox-w32-aa074b9c43f69aa62adb15e3342a0ef63f625678.tar.gz
busybox-w32-aa074b9c43f69aa62adb15e3342a0ef63f625678.tar.bz2
busybox-w32-aa074b9c43f69aa62adb15e3342a0ef63f625678.zip
skip_whitespace() shouldn't claim its return value is const, it doesn't know
that and callers wind up typecasting it back. git-svn-id: svn://busybox.net/trunk/busybox@15420 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb/inet_common.c')
-rw-r--r--libbb/inet_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/inet_common.c b/libbb/inet_common.c
index c02c732f3..0051edbdc 100644
--- a/libbb/inet_common.c
+++ b/libbb/inet_common.c
@@ -8,13 +8,13 @@
8 * 8 *
9 */ 9 */
10 10
11#include "libbb.h"
11#include "inet_common.h" 12#include "inet_common.h"
12#include <stdio.h> 13#include <stdio.h>
13#include <errno.h> 14#include <errno.h>
14#include <stdlib.h> 15#include <stdlib.h>
15#include <string.h> 16#include <string.h>
16#include <unistd.h> 17#include <unistd.h>
17#include "libbb.h"
18 18
19#ifdef DEBUG 19#ifdef DEBUG
20# include <resolv.h> 20# include <resolv.h>