summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorHolger Lubitz2007-07-27 21:36:53 +0200
committerHolger Lubitz2007-07-27 21:36:53 +0200
commited06bd8a89d109c4f884f2aa4c23452d60ff58d0 (patch)
tree3e35491ebe029c8d5b15849a4423e9e0e574af6b /src/core
parentmake md5_steps static (diff)
downloadipxe-ed06bd8a89d109c4f884f2aa4c23452d60ff58d0.tar.gz
ipxe-ed06bd8a89d109c4f884f2aa4c23452d60ff58d0.tar.xz
ipxe-ed06bd8a89d109c4f884f2aa4c23452d60ff58d0.zip
make isspace static
Diffstat (limited to 'src/core')
-rw-r--r--src/core/misc.c2
1 files changed, 1 insertions, 1 deletions
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':