diff options
author | Austin Foxley <austinf@cetoncorp.com> | 2009-12-09 18:10:53 -0800 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-12-09 18:10:53 -0800 |
commit | 1a3ad45bb56f144b78139966b9a618675c871bb5 (patch) | |
tree | 3c128b348c7c12cf7bbb68ac6eeb4aee23cad7a0 /libpthread/nptl/pthreadP.h | |
parent | 8ebd4b8855981462a03f5930a1f8d712c021190f (diff) |
nptl: fix a few more old style declerations
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libpthread/nptl/pthreadP.h')
-rw-r--r-- | libpthread/nptl/pthreadP.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libpthread/nptl/pthreadP.h b/libpthread/nptl/pthreadP.h index 61d59f601..149c505c3 100644 --- a/libpthread/nptl/pthreadP.h +++ b/libpthread/nptl/pthreadP.h @@ -263,13 +263,11 @@ hidden_proto (__nptl_death_event) #ifdef TLS_MULTIPLE_THREADS_IN_TCB extern void __libc_pthread_init (unsigned long int *ptr, void (*reclaim) (void), - const struct pthread_functions *functions) - internal_function; + const struct pthread_functions *functions); #else extern int *__libc_pthread_init (unsigned long int *ptr, void (*reclaim) (void), - const struct pthread_functions *functions) - internal_function; + const struct pthread_functions *functions); /* Variable set to a nonzero value if more than one thread runs or ran. */ extern int __pthread_multiple_threads attribute_hidden; |