From 21730caa6647f645974e132ca8afec79b4eeab2b Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Fri, 18 Sep 2009 20:57:40 +0200 Subject: trim Experimentally off and uncommented hidden sed -i -e '/Experimentally off - /d' $(grep -rl "Experimentally off - " *) sed -i -e '/^\/\*[[:space:]]*libc_hidden_proto(/d' $(grep -rl "libc_hidden_proto" *) should be a nop Signed-off-by: Bernhard Reutner-Fischer --- libc/misc/wctype/_wctype.c | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'libc/misc/wctype/_wctype.c') diff --git a/libc/misc/wctype/_wctype.c b/libc/misc/wctype/_wctype.c index 0b7bd5c2c..6ab6bab77 100644 --- a/libc/misc/wctype/_wctype.c +++ b/libc/misc/wctype/_wctype.c @@ -37,13 +37,6 @@ #include #include -/* Experimentally off - libc_hidden_proto(strcmp) */ -/* libc_hidden_proto(tolower) */ -/* libc_hidden_proto(toupper) */ -/* libc_hidden_proto(towlower) */ -/* libc_hidden_proto(towupper) */ -/* libc_hidden_proto(towctrans) */ -/* libc_hidden_proto(iswctype) */ #if defined(__LOCALE_C_ONLY) && defined(__UCLIBC_DO_XLOCALE) #error xlocale functionality is not supported in stub locale mode. @@ -51,17 +44,10 @@ #ifdef __UCLIBC_HAS_XLOCALE__ #include -/* libc_hidden_proto(towlower_l) */ -/* libc_hidden_proto(towupper_l) */ -/* libc_hidden_proto(towctrans_l) */ -/* libc_hidden_proto(iswctype_l) */ #elif defined __UCLIBC_HAS_CTYPE_TABLES__ -/* libc_hidden_proto(__ctype_b) */ #endif /* __UCLIBC_HAS_XLOCALE__ */ #ifdef __UCLIBC_HAS_CTYPE_TABLES__ -/* libc_hidden_proto(__C_ctype_tolower) */ -/* libc_hidden_proto(__C_ctype_toupper) */ #endif /* We know wide char support is enabled. We wouldn't be here otherwise. */ @@ -465,7 +451,6 @@ libc_hidden_def(towupper) static const unsigned char typestring[] = __CTYPE_TYPESTRING; -/* libc_hidden_proto(wctype) */ wctype_t wctype(const char *property) { const unsigned char *p; @@ -494,9 +479,7 @@ libc_hidden_def(wctype) #warning REMINDER: Currently wctype_l simply calls wctype. #endif /* __UCLIBC_MJN3_ONLY__ */ -/* libc_hidden_proto(wctype) */ -/* libc_hidden_proto(wctype_l) */ wctype_t wctype_l (const char *property, __locale_t locale) { return wctype(property); @@ -861,7 +844,6 @@ libc_hidden_def(towctrans) static const char transstring[] = __CTYPE_TRANSTRING; -/* libc_hidden_proto(wctrans) */ wctrans_t wctrans(const char *property) { const unsigned char *p; @@ -890,7 +872,6 @@ libc_hidden_def(wctrans) #warning REMINDER: Currently wctrans_l simply calls wctrans. #endif /* __UCLIBC_MJN3_ONLY__ */ -/* libc_hidden_proto(wctrans) */ wctrans_t wctrans_l(const char *property, __locale_t locale) { -- cgit v1.2.3