From: Holger Lubitz Date: Sat, 28 Jul 2007 21:20:44 +0000 (+0200) Subject: Revert "make isspace static" - prototype for isspace() is defined by C99, so can... X-Git-Tag: v0.9.3~159^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52e5c245652a3c71a43b00d2ea21e8aa6697a17c;p=thirdparty%2Fipxe.git Revert "make isspace static" - prototype for isspace() is defined by C99, so can't be static This reverts commit ed06bd8a89d109c4f884f2aa4c23452d60ff58d0. --- diff --git a/src/core/misc.c b/src/core/misc.c index af83cb146..4219a36c5 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; } -static int isspace ( int c ) { +int isspace ( int c ) { switch ( c ) { case ' ': case '\f':