diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-01-06 03:48:18 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-01-06 03:48:18 +0100 |
commit | 100a2df1686521605a784062ccda6a6b30c62deb (patch) | |
tree | 66748c39fad11db3d539faedce4e8611196469ac | |
parent | ada00b30cf36beecdf4b900b67ffb602fd0b89ca (diff) |
Remove use of `internal_function'
Recent glibc does not define it any more.
* sysdeps/pthread/pthread-functions.h (__libc_pthread_init): Do not
qualify with internal_function.
-rw-r--r-- | sysdeps/pthread/pthread-functions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/pthread/pthread-functions.h b/sysdeps/pthread/pthread-functions.h index f9e367c..0fc8968 100644 --- a/sysdeps/pthread/pthread-functions.h +++ b/sysdeps/pthread/pthread-functions.h @@ -133,7 +133,7 @@ struct pthread_functions extern struct pthread_functions __libc_pthread_functions attribute_hidden; extern int __libc_pthread_functions_init attribute_hidden; -void __libc_pthread_init (const struct pthread_functions *functions) internal_function; +void __libc_pthread_init (const struct pthread_functions *functions); # define PTHFCT_CALL(fct, params) \ __libc_pthread_functions.fct params |