diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-08-10 19:59:27 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-08-10 19:59:27 +0000 |
commit | b1b54458af706a5eef0f7a76d06ce93f8cbd806b (patch) | |
tree | 5f7efaada4df88e6387d1bd13eac9b0fd0e4f99b | |
parent | 680fbe542933e8d2fa97d9aaba6fa5ca7069c639 (diff) | |
download | glibc-b1b54458af706a5eef0f7a76d06ce93f8cbd806b.tar glibc-b1b54458af706a5eef0f7a76d06ce93f8cbd806b.tar.gz glibc-b1b54458af706a5eef0f7a76d06ce93f8cbd806b.tar.bz2 glibc-b1b54458af706a5eef0f7a76d06ce93f8cbd806b.zip |
(iswalpha, iswdigit, iswlower, iswspace, iswxdigit, iswtolower, iswtoupper): Add libc_hidden_def.
-rw-r--r-- | wctype/wcfuncs.c | 7 |
1 files changed, 7 insertions, 0 deletions
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) |