diff options
| author | Holger Lubitz | 2007-07-28 23:20:44 +0200 |
|---|---|---|
| committer | Holger Lubitz | 2007-07-28 23:20:44 +0200 |
| commit | 52e5c245652a3c71a43b00d2ea21e8aa6697a17c (patch) | |
| tree | 1123e9ebb6aba7d87200382ae08b9eae034fc55c /src | |
| parent | Revert "make __udivmoddi4 static" - gcc links to it implicitly (diff) | |
| download | ipxe-52e5c245652a3c71a43b00d2ea21e8aa6697a17c.tar.gz ipxe-52e5c245652a3c71a43b00d2ea21e8aa6697a17c.tar.xz ipxe-52e5c245652a3c71a43b00d2ea21e8aa6697a17c.zip | |
Revert "make isspace static" - prototype for isspace() is defined by C99, so can't be static
This reverts commit ed06bd8a89d109c4f884f2aa4c23452d60ff58d0.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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': |
