diff options
Diffstat (limited to 'sysdeps/mach')
-rw-r--r-- | sysdeps/mach/hurd/i386/init-first.c | 4 | ||||
-rw-r--r-- | sysdeps/mach/hurd/mips/init-first.c | 6 | ||||
-rw-r--r-- | sysdeps/mach/hurd/powerpc/init-first.c | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/sysdeps/mach/hurd/i386/init-first.c b/sysdeps/mach/hurd/i386/init-first.c index ad32b30af0..56db837842 100644 --- a/sysdeps/mach/hurd/i386/init-first.c +++ b/sysdeps/mach/hurd/i386/init-first.c @@ -47,8 +47,8 @@ int __libc_enable_secure; #endif int __libc_multiple_libcs = 1; -extern int __libc_argc; -extern char **__libc_argv; +extern int __libc_argc attribute_hidden; +extern char **__libc_argv attribute_hidden; extern char **_dl_argv; void *(*_cthread_init_routine) (void); /* Returns new SP to use. */ diff --git a/sysdeps/mach/hurd/mips/init-first.c b/sysdeps/mach/hurd/mips/init-first.c index 07b8e9e38c..dbcad4b481 100644 --- a/sysdeps/mach/hurd/mips/init-first.c +++ b/sysdeps/mach/hurd/mips/init-first.c @@ -31,7 +31,7 @@ extern void __init_misc (int, char **, char **); #ifdef USE_NONOPTION_FLAGS extern void __getopt_clean_environment (char **); #endif -#ifndef SHARED +#ifndef SHARED extern void _dl_non_dynamic_init (void) internal_function; #endif extern void __libc_global_ctors (void); @@ -42,8 +42,8 @@ unsigned long int __hurd_threadvar_stack_mask; int __libc_multiple_libcs = 1; -int __libc_argc; -char **__libc_argv; +int __libc_argc attribute_hidden; +char **__libc_argv attribute_hidden; void *(*_cthread_init_routine) (void); /* Returns new SP to use. */ void (*_cthread_exit_routine) (int status) __attribute__ ((__noreturn__)); diff --git a/sysdeps/mach/hurd/powerpc/init-first.c b/sysdeps/mach/hurd/powerpc/init-first.c index 18e824a487..80aa61524e 100644 --- a/sysdeps/mach/hurd/powerpc/init-first.c +++ b/sysdeps/mach/hurd/powerpc/init-first.c @@ -33,7 +33,7 @@ extern void __init_misc (int, char **, char **); #ifdef USE_NONOPTION_FLAGS extern void __getopt_clean_environment (char **); #endif -#ifndef SHARED +#ifndef SHARED extern void _dl_non_dynamic_init (void) internal_function; #endif extern void __libc_global_ctors (void); @@ -47,8 +47,8 @@ int __libc_enable_secure; #endif int __libc_multiple_libcs = 1; -extern int __libc_argc; -extern char **__libc_argv; +extern int __libc_argc attribute_hidden; +extern char **__libc_argv attribute_hidden; extern char **_dl_argv; void *(*_cthread_init_routine) (void); /* Returns new SP to use. */ |