From cb97aadebfeba7f5e8f1b85beee5ab10e88c2990 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 20 Nov 2008 22:11:44 +0000 Subject: Last portion of libc_hidden_proto removal. Appears to build fine (several .configs tried) --- libc/string/strncasecmp.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libc/string/strncasecmp.c') diff --git a/libc/string/strncasecmp.c b/libc/string/strncasecmp.c index 9df9be59c..a9e7245a8 100644 --- a/libc/string/strncasecmp.c +++ b/libc/string/strncasecmp.c @@ -12,22 +12,22 @@ #ifdef WANT_WIDE # define strncasecmp wcsncasecmp # define strncasecmp_l wcsncasecmp_l -libc_hidden_proto(wcsncasecmp) +/* libc_hidden_proto(wcsncasecmp) */ # if defined(__USE_GNU) && defined(__UCLIBC_HAS_XLOCALE__) -libc_hidden_proto(wcsncasecmp_l) +/* libc_hidden_proto(wcsncasecmp_l) */ # endif # ifdef __UCLIBC_DO_XLOCALE -libc_hidden_proto(towlower_l) +/* libc_hidden_proto(towlower_l) */ # define TOLOWER(C) towlower_l((C), locale_arg) # else -libc_hidden_proto(towlower) +/* libc_hidden_proto(towlower) */ # define TOLOWER(C) towlower((C)) # endif #else /* Experimentally off - libc_hidden_proto(strncasecmp) */ /* Experimentally off - libc_hidden_proto(strncasecmp_l) */ # ifdef __UCLIBC_DO_XLOCALE -libc_hidden_proto(tolower_l) +/* libc_hidden_proto(tolower_l) */ # define TOLOWER(C) tolower_l((C), locale_arg) # else #if !defined __UCLIBC_HAS_XLOCALE__ && defined __UCLIBC_HAS_CTYPE_TABLES__ -- cgit v1.2.3