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 /stdlib | |
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 'stdlib')
-rw-r--r-- | stdlib/mbtowc.c | 4 | ||||
-rw-r--r-- | stdlib/wctomb.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/mbtowc.c b/stdlib/mbtowc.c index 323adcf599..51fd9ab8f2 100644 --- a/stdlib/mbtowc.c +++ b/stdlib/mbtowc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 92, 95, 96, 97, 98, 99 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1992, 1995-1999, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -24,7 +24,7 @@ /* Common state for all non-restartable conversion functions. */ -mbstate_t __no_r_state; +mbstate_t __no_r_state attribute_hidden; /* Convert the multibyte character at S, which is no longer than N characters, to its `wchar_t' representation, placing diff --git a/stdlib/wctomb.c b/stdlib/wctomb.c index 61305f8f0a..ae73d5f75d 100644 --- a/stdlib/wctomb.c +++ b/stdlib/wctomb.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 92, 95, 96, 97, 98, 99 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1992, 1995-1999, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -23,7 +23,7 @@ #include <wcsmbs/wcsmbsload.h> -extern mbstate_t __no_r_state; /* Defined in mbtowc.c. */ +extern mbstate_t __no_r_state attribute_hidden; /* Defined in mbtowc.c. */ /* Convert WCHAR into its multibyte character representation, putting this in S and returning its length. |