mirror of git://sourceware.org/git/glibc.git
Define __libc_argc and __libc_argv as hidden.
This commit is contained in:
parent
b5f72d715e
commit
48e6095f0e
|
@ -31,7 +31,7 @@ extern void __init_misc (int, char **, char **);
|
||||||
#ifdef USE_NONOPTION_FLAGS
|
#ifdef USE_NONOPTION_FLAGS
|
||||||
extern void __getopt_clean_environment (char **);
|
extern void __getopt_clean_environment (char **);
|
||||||
#endif
|
#endif
|
||||||
#ifndef SHARED
|
#ifndef SHARED
|
||||||
extern void _dl_non_dynamic_init (void) internal_function;
|
extern void _dl_non_dynamic_init (void) internal_function;
|
||||||
#endif
|
#endif
|
||||||
extern void __libc_global_ctors (void);
|
extern void __libc_global_ctors (void);
|
||||||
|
@ -42,8 +42,8 @@ unsigned long int __hurd_threadvar_stack_mask;
|
||||||
|
|
||||||
int __libc_multiple_libcs = 1;
|
int __libc_multiple_libcs = 1;
|
||||||
|
|
||||||
int __libc_argc;
|
int __libc_argc attribute_hidden;
|
||||||
char **__libc_argv;
|
char **__libc_argv attribute_hidden;
|
||||||
|
|
||||||
void *(*_cthread_init_routine) (void); /* Returns new SP to use. */
|
void *(*_cthread_init_routine) (void); /* Returns new SP to use. */
|
||||||
void (*_cthread_exit_routine) (int status) __attribute__ ((__noreturn__));
|
void (*_cthread_exit_routine) (int status) __attribute__ ((__noreturn__));
|
||||||
|
|
|
@ -46,8 +46,8 @@ int __libc_multiple_libcs = 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. */
|
||||||
int __libc_argc;
|
int __libc_argc attribute_hidden;
|
||||||
char **__libc_argv;
|
char **__libc_argv attribute_hidden;
|
||||||
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in New Issue