diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-03-13 02:17:12 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-03-13 02:17:12 +0000 |
commit | 100351c3e1a858d32177f004e39a91d9d9a004ef (patch) | |
tree | 8766e6e71a3e8e70a282d2e71e2b2aee183faedd /libio/libioP.h | |
parent | aa32f79837bb38f8cea9daa26fd5eb6091861442 (diff) | |
download | glibc-100351c3e1a858d32177f004e39a91d9d9a004ef.tar glibc-100351c3e1a858d32177f004e39a91d9d9a004ef.tar.gz glibc-100351c3e1a858d32177f004e39a91d9d9a004ef.tar.bz2 glibc-100351c3e1a858d32177f004e39a91d9d9a004ef.zip |
Update.
* stdio-common/itowa-digits.c (_itowa_lower_digits): Define as hidden.
(_itowa_upper_digits): Likewise.
* libio/stdio.c (_IO_stdin, _IO_stdout, _IO_stderr): Define as hidden.
* libio/libio.h [_LIBC] (_IO_stdin, _IO_stdout, _IO_stderr): Declare
as hidden.
* libio/libioP.h: Declare _IO_file_jumps_mmap, _IO_wfile_jumps,
_IO_wfile_jumps_mmap, _IO_proc_jumps, _IO_old_proc_jumps,
_IO_str_jumps, _IO_wstr_jumps, _IO_file_jumps_internal,
_IO_wfile_jumps_internal, and _IO_list_all_internal as hidden.
* gmon/gmon.c (__bb_head): Define as hidden.
* gmon/bb_exit_func.c (__bb_head): Declare as hidden.
* argp/argp-parse.c (_argp_hang): Define as static.
* include/libc-symbols.h (_INTVARDEF): Adjust for visibility
handling in latest compilers.
* inet/in6_addr.c (in6addr_any): Use INTVARDEF not INTDEF to
define alias.
* libio/fileops.c (_IO_file_jumps): Likewise.
* libio/stdfiles.c (_IO_list_all): Likewise.
* libio/wfileops.c (_IO_wfile_jumps): Likewise.
* malloc/malloc.h: Move __libc_malloc_initialized declaration to
include/malloc.h.
* include/malloc.h: Add __libc_malloc_initialized declaration
here. Mark variable hidden.
* malloc/malloc.c: Include <malloc.h> not "malloc.h".
* elf/dl-open.c (__libc_argc): Declare as hidden.
(__libc_argv): Likewise.
* sysdeps/generic/wordexp.c (__libc_argc): Declare as hidden.
(__libc_argv): Likewise.
* sysdeps/mach/hurd/i386/init-first.c: Define __libc_argc and
__libc_argv as hidden.
* sysdeps/mach/hurd/mips/init-first.c: Likewise.
* sysdeps/mach/hurd/powerpc/init-first.c: Likewise.
* sysdeps/unix/sysv/aix/init-first.c: Likewise.
* sysdeps/unix/sysv/linux/init-first.c: Likewise.
Diffstat (limited to 'libio/libioP.h')
-rw-r--r-- | libio/libioP.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/libio/libioP.h b/libio/libioP.h index b40e9e69eb..f3a2d97e2a 100644 --- a/libio/libioP.h +++ b/libio/libioP.h @@ -426,15 +426,15 @@ extern int _IO_default_showmanyc __P ((_IO_FILE *)); extern void _IO_default_imbue __P ((_IO_FILE *, void *)); extern struct _IO_jump_t _IO_file_jumps; -extern struct _IO_jump_t _IO_file_jumps_mmap; -extern struct _IO_jump_t _IO_wfile_jumps; -extern struct _IO_jump_t _IO_wfile_jumps_mmap; -extern struct _IO_jump_t _IO_old_file_jumps; +extern struct _IO_jump_t _IO_file_jumps_mmap attribute_hidden; +extern struct _IO_jump_t _IO_wfile_jumps attribute_hidden; +extern struct _IO_jump_t _IO_wfile_jumps_mmap attribute_hidden; +extern struct _IO_jump_t _IO_old_file_jumps attribute_hidden; extern struct _IO_jump_t _IO_streambuf_jumps; -extern struct _IO_jump_t _IO_proc_jumps; -extern struct _IO_jump_t _IO_old_proc_jumps; -extern struct _IO_jump_t _IO_str_jumps; -extern struct _IO_jump_t _IO_wstr_jumps; +extern struct _IO_jump_t _IO_proc_jumps attribute_hidden; +extern struct _IO_jump_t _IO_old_proc_jumps attribute_hidden; +extern struct _IO_jump_t _IO_str_jumps attribute_hidden; +extern struct _IO_jump_t _IO_wstr_jumps attribute_hidden; extern struct _IO_codecvt __libio_codecvt; extern int _IO_do_write __P ((_IO_FILE *, const char *, _IO_size_t)); extern int _IO_new_do_write __P ((_IO_FILE *, const char *, _IO_size_t)); @@ -683,10 +683,10 @@ extern _IO_off64_t _IO_str_seekoff_internal __P ((_IO_FILE *, _IO_off64_t, extern void _IO_str_init_static_internal __P ((struct _IO_strfile_ *, char *, int, char *)); -extern struct _IO_jump_t _IO_file_jumps_internal; -extern struct _IO_jump_t _IO_wfile_jumps_internal; +extern struct _IO_jump_t _IO_file_jumps_internal attribute_hidden; +extern struct _IO_jump_t _IO_wfile_jumps_internal attribute_hidden; -extern struct _IO_FILE_plus *_IO_list_all_internal; +extern struct _IO_FILE_plus *_IO_list_all_internal attribute_hidden; extern void _IO_link_in_internal __P ((struct _IO_FILE_plus *)); extern int _IO_sputbackc_internal __P ((_IO_FILE *, int)); |