diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-03-13 08:59:47 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-03-13 08:59:47 +0000 |
commit | 6455d2556c3fdedb3dac163c2b0a11192aaf18d6 (patch) | |
tree | 346b418b75772613f7b09e9175c4298c9e32de73 /posix/regex_internal.h | |
parent | ab26a24a1721e03c3fc43b9ee437b0735b875c45 (diff) | |
download | glibc-6455d2556c3fdedb3dac163c2b0a11192aaf18d6.tar glibc-6455d2556c3fdedb3dac163c2b0a11192aaf18d6.tar.gz glibc-6455d2556c3fdedb3dac163c2b0a11192aaf18d6.tar.bz2 glibc-6455d2556c3fdedb3dac163c2b0a11192aaf18d6.zip |
Update.
2002-03-13 Ulrich Drepper <drepper@redhat.com>
* sysdeps/unix/sysv/linux/ttyname.c: Comment out definition and
use of __ttyname.
* posix/regcomp.c (__re_error_msgid): Renamed from re_error_msgid.
Define as hidden.
(__re_error_msgid_idx): Renamed from re_error_msgid_idx. Define as
hidden. Change all users of these variables.
* posix/regex_internal.h (__re_error_msgid): Renamed from
re_error_msgid. Declare as hidden.
(__re_error_msgid_idx): Renamed from re_error_msgid_idx. Declare as
hidden.
* stdio-common/reg-printf.c (__printf_arginfo_table): Define as hidden.
(__printf_function_table): Likewise.
* stdio-common/printf-parse.h (__printf_arginfo_table): Declare as
hidden.
(__printf_function_table): Likewise.
* nscd/nscd_proto.h: Declare __nss_not_use_nscd_passwd,
__nss_not_use_nscd_group, and __nss_not_use_nscd_hosts as hidden.
* nss/XXX-lookup.c (DATABASE_NAME_SYMBOL): Define as hidden.
* nss/nsswitch.c: Declare _nss_*_database as hidden.
* stdlib/wctomb.c (__no_r_state): Declare as hidden.
* stdlib/mbtowc.c (__no_r_state): Define as hidden.
Diffstat (limited to 'posix/regex_internal.h')
-rw-r--r-- | posix/regex_internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/regex_internal.h b/posix/regex_internal.h index f3ae7e1c64..bb28102cc9 100644 --- a/posix/regex_internal.h +++ b/posix/regex_internal.h @@ -39,8 +39,8 @@ # define __mempcpy memcpy #endif -extern const char re_error_msgid[]; -extern const size_t re_error_msgid_idx[]; +extern const char __re_error_msgid[] attribute_hidden; +extern const size_t __re_error_msgid_idx[] attribute_hidden; /* Number of bits in an unsinged int. */ #define UINT_BITS (sizeof (unsigned int) * BYTE_BITS) |