diff options
Diffstat (limited to 'libio')
-rw-r--r-- | libio/fileops.c | 2 | ||||
-rw-r--r-- | libio/iofwide.c | 4 | ||||
-rw-r--r-- | libio/libioP.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/libio/fileops.c b/libio/fileops.c index eaf590908a..a53f89fd75 100644 --- a/libio/fileops.c +++ b/libio/fileops.c @@ -80,7 +80,7 @@ extern int errno; #ifdef _LIBC -extern struct __gconv_trans_data __libio_translit; +extern struct __gconv_trans_data __libio_translit attribute_hidden; #endif diff --git a/libio/iofwide.c b/libio/iofwide.c index dba55f59da..225237ef66 100644 --- a/libio/iofwide.c +++ b/libio/iofwide.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. +/* Copyright (C) 1999, 2000, 2001, 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 @@ -82,7 +82,7 @@ struct _IO_codecvt __libio_codecvt = #ifdef _LIBC -struct __gconv_trans_data __libio_translit = +struct __gconv_trans_data __libio_translit attribute_hidden = { .__trans_fct = __gconv_transliterate }; diff --git a/libio/libioP.h b/libio/libioP.h index f3a2d97e2a..1679e1fffa 100644 --- a/libio/libioP.h +++ b/libio/libioP.h @@ -435,7 +435,7 @@ 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 struct _IO_codecvt __libio_codecvt attribute_hidden; 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)); extern int _IO_old_do_write __P ((_IO_FILE *, const char *, _IO_size_t)); |