david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Revert "make isspace static" - prototype for isspace() is defined by C99, so can't be static

This reverts commit ed06bd8a89.
This commit is contained in:
Holger Lubitz 2007-07-28 23:20:44 +02:00
parent 0ae6c53bd9
commit 52e5c24565
1 changed files with 1 additions and 1 deletions

View File

@ -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':