mirror of git://sourceware.org/git/glibc.git
(__libc_multiple_libcs): Define as hidden.
This commit is contained in:
parent
48e6095f0e
commit
15a7702daa
|
@ -1,5 +1,5 @@
|
||||||
/* Initialization code run first thing by the ELF startup code. For ARM.
|
/* Initialization code run first thing by the ELF startup code. For ARM.
|
||||||
Copyright (C) 1995, 1996, 1997, 1998, 2001 Free Software Foundation, Inc.
|
Copyright (C) 1995,1996,1997,1998,2001,2002 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
@ -25,7 +25,7 @@ extern void __getopt_clean_environment (char **);
|
||||||
#endif
|
#endif
|
||||||
extern void __libc_global_ctors (void);
|
extern void __libc_global_ctors (void);
|
||||||
|
|
||||||
int __libc_multiple_libcs = 1;
|
int __libc_multiple_libcs attribute_hidden = 1;
|
||||||
|
|
||||||
static void
|
static void
|
||||||
init (int *data)
|
init (int *data)
|
||||||
|
|
|
@ -40,7 +40,7 @@ unsigned int __hurd_threadvar_max;
|
||||||
unsigned long int __hurd_threadvar_stack_offset;
|
unsigned long int __hurd_threadvar_stack_offset;
|
||||||
unsigned long int __hurd_threadvar_stack_mask;
|
unsigned long int __hurd_threadvar_stack_mask;
|
||||||
|
|
||||||
int __libc_multiple_libcs = 1;
|
int __libc_multiple_libcs attribute_hidden = 1;
|
||||||
|
|
||||||
int __libc_argc attribute_hidden;
|
int __libc_argc attribute_hidden;
|
||||||
char **__libc_argv attribute_hidden;
|
char **__libc_argv attribute_hidden;
|
||||||
|
|
|
@ -42,7 +42,7 @@ weak_extern (_dl_starting_up)
|
||||||
|
|
||||||
/* Set nonzero if we have to be prepared for more then one libc being
|
/* Set nonzero if we have to be prepared for more then one libc being
|
||||||
used in the process. Safe assumption if initializer never runs. */
|
used in the process. Safe assumption if initializer never runs. */
|
||||||
int __libc_multiple_libcs = 1;
|
int __libc_multiple_libcs attribute_hidden = 1;
|
||||||
|
|
||||||
/* Remember the command line argument and enviroment contents for
|
/* Remember the command line argument and enviroment contents for
|
||||||
later calls of initializers for dynamic libraries. */
|
later calls of initializers for dynamic libraries. */
|
||||||
|
|
Loading…
Reference in New Issue