summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2011-03-09 21:11:47 +0100
committerPeter S. Mazinger <ps.m@gmx.net>2011-03-09 21:11:47 +0100
commitf4ec824864b8ea68af8953669f789656cc05143d (patch)
tree99a9e7e6b9ae9911c328bcce62408eccd485522a /include
parent98538deba691281535e3dc0839710b8630e02ac8 (diff)
ctype.c, _collate.c, str[n]casecmp.c, strlcpy.c: remove unused hidden functions
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Diffstat (limited to 'include')
-rw-r--r--include/ctype.h1
-rw-r--r--include/string.h1
-rw-r--r--include/wchar.h5
3 files changed, 0 insertions, 7 deletions
diff --git a/include/ctype.h b/include/ctype.h
index dcfeb1b3e..6ad17a781 100644
--- a/include/ctype.h
+++ b/include/ctype.h
@@ -354,7 +354,6 @@ libc_hidden_proto(tolower_l)
/* Return the uppercase version of C. */
/*extern int __toupper_l (int __c, __locale_t __l) __THROW; */
extern int toupper_l (int __c, __locale_t __l) __THROW;
-libc_hidden_proto(toupper_l)
# if __GNUC__ >= 2 && defined __OPTIMIZE__ && !defined __cplusplus
# define tolower_l(c, locale) __tobody(c, tolower_l, (locale)->__ctype_tolower, (c, locale))
diff --git a/include/string.h b/include/string.h
index c71a85c9f..6632e5f4a 100644
--- a/include/string.h
+++ b/include/string.h
@@ -124,7 +124,6 @@ libc_hidden_proto(strcoll)
extern size_t strxfrm (char *__restrict __dest,
__const char *__restrict __src, size_t __n)
__THROW __nonnull ((2));
-libc_hidden_proto(strxfrm)
__END_NAMESPACE_STD
#if defined __USE_GNU && defined __UCLIBC_HAS_XLOCALE__
diff --git a/include/wchar.h b/include/wchar.h
index 3795998a5..ddbb55912 100644
--- a/include/wchar.h
+++ b/include/wchar.h
@@ -170,12 +170,10 @@ __END_NAMESPACE_C99
#ifdef __USE_GNU
/* Compare S1 and S2, ignoring case. */
extern int wcscasecmp (__const wchar_t *__s1, __const wchar_t *__s2) __THROW;
-libc_hidden_proto(wcscasecmp)
/* Compare no more than N chars of S1 and S2, ignoring case. */
extern int wcsncasecmp (__const wchar_t *__s1, __const wchar_t *__s2,
size_t __n) __THROW;
-libc_hidden_proto(wcsncasecmp)
#ifdef __UCLIBC_HAS_XLOCALE__
/* Similar to the two functions above but take the information from
@@ -184,11 +182,9 @@ libc_hidden_proto(wcsncasecmp)
extern int wcscasecmp_l (__const wchar_t *__s1, __const wchar_t *__s2,
__locale_t __loc) __THROW;
-libc_hidden_proto(wcscasecmp_l)
extern int wcsncasecmp_l (__const wchar_t *__s1, __const wchar_t *__s2,
size_t __n, __locale_t __loc) __THROW;
-libc_hidden_proto(wcsncasecmp_l)
#endif /* __UCLIBC_HAS_XLOCALE__ */
#endif
@@ -202,7 +198,6 @@ libc_hidden_proto(wcscoll)
`wcscoll' to the original strings. */
extern size_t wcsxfrm (wchar_t *__restrict __s1,
__const wchar_t *__restrict __s2, size_t __n) __THROW;
-libc_hidden_proto(wcsxfrm)
__END_NAMESPACE_C99
#ifdef __USE_GNU