mirror of
https://github.com/ipxe/ipxe
synced 2025-12-18 18:40:24 +03:00
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:
@@ -42,7 +42,7 @@ int inet_aton ( const char *cp, struct in_addr *inp ) {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int isspace ( int c ) {
|
int isspace ( int c ) {
|
||||||
switch ( c ) {
|
switch ( c ) {
|
||||||
case ' ':
|
case ' ':
|
||||||
case '\f':
|
case '\f':
|
||||||
|
|||||||
Reference in New Issue
Block a user