diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-03-11 10:36:30 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-03-11 10:36:30 +0000 |
commit | 20febd6a63d1fbfbcb062760b142f67f33a94e91 (patch) | |
tree | 0cf77cff89947deec5d65cb679b47ec5a76b06c2 /wcsmbs | |
parent | 0e47dbd052f7bbc28e9854d4cb1fdd4f5f53d8d0 (diff) | |
download | glibc-20febd6a63d1fbfbcb062760b142f67f33a94e91.tar.gz |
Update.
* wctype/wcfuncs.c (__ctype32_wctype): Declare as hidden.
(__ctype32_wctrans): Likewise.
* wcsmbs/wcwidth.h (__ctype32_width): Declare as hidden.
* ctype/ctype-info.c (__ctype32_wctype): Add attribute_hidden.
(__ctype32_wctrans): Likewise.
(__ctype32_width): Likewise.
Diffstat (limited to 'wcsmbs')
-rw-r--r-- | wcsmbs/wcwidth.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wcsmbs/wcwidth.h b/wcsmbs/wcwidth.h index 92ee3d62fe..e32f02d6e2 100644 --- a/wcsmbs/wcwidth.h +++ b/wcsmbs/wcwidth.h @@ -1,5 +1,5 @@ /* Internal header containing implementation of wcwidth() function. - Copyright (C) 1996, 1997, 1999, 2000, 2001 Free Software Foundation, Inc. + Copyright (C) 1996,1997,1999,2000,2001,2002 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1996. @@ -23,7 +23,7 @@ #include "../wctype/wchar-lookup.h" /* Table containing width information. */ -extern const char *__ctype32_width; +extern const char *__ctype32_width attribute_hidden; static __inline int internal_wcwidth (wchar_t wc) |