]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
make isspace static
authorHolger Lubitz <hal@duncan.ol.sub.de>
Fri, 27 Jul 2007 19:36:53 +0000 (21:36 +0200)
committerHolger Lubitz <hal@duncan.ol.sub.de>
Fri, 27 Jul 2007 19:36:53 +0000 (21:36 +0200)
src/core/misc.c

index 4219a36c557d3d506a40204b6b98a5773294112a..af83cb1465664167dd39658754fc4c4412246d40 100644 (file)
@@ -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':