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
|
@ -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