You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
439 B
20 lines
439 B
--- b.c.orig Fri Mar 14 15:44:17 2003 |
|
+++ b.c Mon Mar 17 09:12:17 2003 |
|
@@ -722,7 +722,7 @@ |
|
|
|
#ifndef HAS_ISBLANK |
|
|
|
-int (isblank)(int c) |
|
+static int (awk_isblank)(int c) |
|
{ |
|
return c==' ' || c=='\t'; |
|
} |
|
@@ -736,7 +736,7 @@ |
|
} charclasses[] = { |
|
{ "alnum", 5, isalnum }, |
|
{ "alpha", 5, isalpha }, |
|
- { "blank", 5, isblank }, |
|
+ { "blank", 5, awk_isblank }, |
|
{ "cntrl", 5, iscntrl }, |
|
{ "digit", 5, isdigit }, |
|
{ "graph", 5, isgraph },
|
|
|