summaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-11-27 14:17:13 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-11-27 14:17:13 +0000
commit28075836bdd3771e55f97ee66f4d5d53d6c0e8d9 (patch)
treef5a860cd5e57cd945da94abbb11ecd2a656a5393 /libc
parent151b127c3a8678f491e0ec977eaa38e952b2e7bd (diff)
- make isascii visible again
TODO: *_l() should go
Diffstat (limited to 'libc')
-rw-r--r--libc/misc/ctype/ctype.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/misc/ctype/ctype.c b/libc/misc/ctype/ctype.c
index 1ae2f8de5..43f95429a 100644
--- a/libc/misc/ctype/ctype.c
+++ b/libc/misc/ctype/ctype.c
@@ -382,14 +382,14 @@ int __XL_NPP(isascii)(int c)
#else /* __UCLIBC_HAS_CTYPE_TABLES__ */
-/* libc_hidden_proto(isascii) */
int isascii(int c)
{
return __isascii(c); /* locale-independent */
}
-libc_hidden_def(isascii)
#endif /* __UCLIBC_HAS_CTYPE_TABLES__ */
+CTYPE_DEF(ascii)
+
#endif
/**********************************************************************/