From: Holger Lubitz Date: Fri, 27 Jul 2007 19:36:53 +0000 (+0200) Subject: make isspace static X-Git-Tag: v0.9.3~159^2~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed06bd8a89d109c4f884f2aa4c23452d60ff58d0;p=thirdparty%2Fipxe.git make isspace static --- diff --git a/src/core/misc.c b/src/core/misc.c index 4219a36c5..af83cb146 100644 --- a/src/core/misc.c +++ b/src/core/misc.c @@ -42,7 +42,7 @@ int inet_aton ( const char *cp, struct in_addr *inp ) { return 0; } -int isspace ( int c ) { +static int isspace ( int c ) { switch ( c ) { case ' ': case '\f':