diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-20 22:07:43 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-20 22:07:43 +0000 |
commit | b133fe1cac9f99b63ea56daf92caa1423b1289d0 (patch) | |
tree | 3434fe3fee6b02c3c7006c91366ac7708810a656 /libc/string | |
parent | 2cced20a74b0fd22fd34254e5d92ce06e2cfb60d (diff) |
next portion of libc_hidden_proto removal
Diffstat (limited to 'libc/string')
-rw-r--r-- | libc/string/strcasecmp.c | 2 | ||||
-rw-r--r-- | libc/string/strcasestr.c | 2 | ||||
-rw-r--r-- | libc/string/strncasecmp.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libc/string/strcasecmp.c b/libc/string/strcasecmp.c index 5f2dc8e04..a5254f327 100644 --- a/libc/string/strcasecmp.c +++ b/libc/string/strcasecmp.c @@ -33,7 +33,7 @@ libc_hidden_proto(tolower_l) #if !defined __UCLIBC_HAS_XLOCALE__ && defined __UCLIBC_HAS_CTYPE_TABLES__ /* libc_hidden_proto(__ctype_tolower) */ #endif -libc_hidden_proto(tolower) +/* libc_hidden_proto(tolower) */ # define TOLOWER(C) tolower((C)) # endif #endif diff --git a/libc/string/strcasestr.c b/libc/string/strcasestr.c index 143392d3a..4804494cc 100644 --- a/libc/string/strcasestr.c +++ b/libc/string/strcasestr.c @@ -13,7 +13,7 @@ #elif defined __UCLIBC_HAS_CTYPE_TABLES__ /* libc_hidden_proto(__ctype_tolower) */ #endif -libc_hidden_proto(tolower) +/* libc_hidden_proto(tolower) */ char *strcasestr(const char *s1, const char *s2) { diff --git a/libc/string/strncasecmp.c b/libc/string/strncasecmp.c index 83efd85a7..9df9be59c 100644 --- a/libc/string/strncasecmp.c +++ b/libc/string/strncasecmp.c @@ -33,7 +33,7 @@ libc_hidden_proto(tolower_l) #if !defined __UCLIBC_HAS_XLOCALE__ && defined __UCLIBC_HAS_CTYPE_TABLES__ /* libc_hidden_proto(__ctype_tolower) */ #endif -libc_hidden_proto(tolower) +/* libc_hidden_proto(tolower) */ # define TOLOWER(C) tolower((C)) # endif #endif |