summaryrefslogtreecommitdiff
path: root/libc/misc/wctype
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-12-16 08:56:00 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-12-16 08:56:00 +0000
commite483359d3e793318147da2cb09600c323753edee (patch)
tree373de22afc8112b0c32b30782fbb51dd5d8809d6 /libc/misc/wctype
parent403d3b6c026812d82647eabf9370722f3f1e7893 (diff)
Hide towctrans*. What is SMALL_UPLOW and why do we need it?
Diffstat (limited to 'libc/misc/wctype')
-rw-r--r--libc/misc/wctype/wctype.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/libc/misc/wctype/wctype.c b/libc/misc/wctype/wctype.c
index c98363d21..67b1ca600 100644
--- a/libc/misc/wctype/wctype.c
+++ b/libc/misc/wctype/wctype.c
@@ -731,7 +731,7 @@ weak_alias(__iswctype, iswctype)
#define _toupper(c) toupper(c)
#endif
-wint_t towctrans(wint_t wc, wctrans_t desc)
+wint_t attribute_hidden __towctrans(wint_t wc, wctrans_t desc)
{
if (((unsigned int)(desc - _CTYPE_tolower))
<= (_CTYPE_toupper - _CTYPE_tolower)
@@ -749,7 +749,7 @@ wint_t towctrans(wint_t wc, wctrans_t desc)
#else /* __LOCALE_C_ONLY */
#ifdef L_towctrans
-#define TOWCTRANS(w,d) towctrans(w,d)
+#define TOWCTRANS(w,d) __towctrans(w,d)
#else /* L_towctrans */
#define TOWCTRANS(w,d) __towctrans_l(w,d, __locale_t locale)
#undef __UCLIBC_CURLOCALE_DATA
@@ -768,7 +768,7 @@ wint_t towctrans(wint_t wc, wctrans_t desc)
#if defined(L_towctrans) && defined(__UCLIBC_HAS_XLOCALE__)
-wint_t towctrans(wint_t wc, wctrans_t desc)
+wint_t attribute_hidden __towctrans(wint_t wc, wctrans_t desc)
{
return __towctrans_l(wc, desc, __UCLIBC_CURLOCALE);
}
@@ -777,7 +777,7 @@ wint_t towctrans(wint_t wc, wctrans_t desc)
#ifdef SMALL_UPLOW
-wint_t TOWCTRANS(wint_t wc, wctrans_t desc)
+wint_t attribute_hidden TOWCTRANS(wint_t wc, wctrans_t desc)
{
unsigned int sc, n, i;
__uwchar_t u = wc;
@@ -835,7 +835,7 @@ wint_t TOWCTRANS(wint_t wc, wctrans_t desc)
#else /* SMALL_UPLOW */
-wint_t TOWCTRANS(wint_t wc, wctrans_t desc)
+wint_t attribute_hidden TOWCTRANS(wint_t wc, wctrans_t desc)
{
if (ENCODING == __ctype_encoding_7_bit) {
if ((((__uwchar_t) wc) > 0x7f)
@@ -878,8 +878,9 @@ wint_t TOWCTRANS(wint_t wc, wctrans_t desc)
#endif /* defined(L_towctrans) && defined(__UCLIBC_HAS_XLOCALE__) */
#ifdef L_towctrans_l
-weak_alias(__towctrans_l, towctrans_l)
+strong_alias(__towctrans_l, towctrans_l)
#endif /* L_towctrans_l */
+strong_alias(__towctrans,towctrans)
#endif /* __LOCALE_C_ONLY */