From b1b54458af706a5eef0f7a76d06ce93f8cbd806b Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 10 Aug 2002 19:59:27 +0000 Subject: (iswalpha, iswdigit, iswlower, iswspace, iswxdigit, iswtolower, iswtoupper): Add libc_hidden_def. --- wctype/wcfuncs.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'wctype') diff --git a/wctype/wcfuncs.c b/wctype/wcfuncs.c index b76423edce..8dbd5a97e8 100644 --- a/wctype/wcfuncs.c +++ b/wctype/wcfuncs.c @@ -40,14 +40,17 @@ extern const char *__ctype32_wctrans[2] attribute_hidden; func (iswalnum, __ISwalnum) #undef iswalpha func (iswalpha, __ISwalpha) +libc_hidden_def (iswalpha) #undef iswblank func (iswblank, __ISwblank) #undef iswcntrl func (iswcntrl, __ISwcntrl) #undef iswdigit func (iswdigit, __ISwdigit) +libc_hidden_def (iswdigit) #undef iswlower func (iswlower, __ISwlower) +libc_hidden_def (iswlower) #undef iswgraph func (iswgraph, __ISwgraph) #undef iswprint @@ -56,10 +59,12 @@ func (iswprint, __ISwprint) func (iswpunct, __ISwpunct) #undef iswspace func (iswspace, __ISwspace) +libc_hidden_def (iswspace) #undef iswupper func (iswupper, __ISwupper) #undef iswxdigit func (iswxdigit, __ISwxdigit) +libc_hidden_def (iswxdigit) wint_t (towlower) (wc) @@ -67,6 +72,7 @@ wint_t { return wctrans_table_lookup (__ctype32_wctrans[__TOW_tolower], wc); } +libc_hidden_def (towlower) wint_t (towupper) (wc) @@ -74,3 +80,4 @@ wint_t { return wctrans_table_lookup (__ctype32_wctrans[__TOW_toupper], wc); } +libc_hidden_def (towupper) -- cgit 1.4.1