diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2011-05-06 14:08:24 +0000 | 
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2011-05-06 14:08:24 +0000 | 
| commit | e2f76e526c9828f75cb69d51857e9efd1ed0684f (patch) | |
| tree | 3bd96c6c930a25429b3c0cf7413942cb20dd8d99 /b.c | |
| parent | f11de2916976d54dd9f4f804dda1c290783aaa90 (diff) | |
Diffstat (limited to 'b.c')
| -rw-r--r-- | b.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| @@ -748,7 +748,11 @@ struct charclass {  } charclasses[] = {  	{ "alnum",	5,	isalnum },  	{ "alpha",	5,	isalpha }, +#ifndef HAS_ISBLANK  	{ "blank",	5,	isspace }, /* was isblank */ +#else +	{ "blank",	5,	isblank }, +#endif  	{ "cntrl",	5,	iscntrl },  	{ "digit",	5,	isdigit },  	{ "graph",	5,	isgraph }, | 
