diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2017-01-12 19:35:09 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2017-01-14 18:31:49 +0100 |
commit | ff530271e47b68345aaecf939988d8a0e1823956 (patch) | |
tree | da7eef4cba57f408a34a82db3b6af7b8d34c507e /libpthread/nptl/pthread_attr_init.c | |
parent | f4432e06555b0e8f250e6abc87cdf6e14320a52c (diff) |
nptl: remove pthread_attr_init/pthread_create weak aliases
We do not support symbol versioning, so remove these weak aliases.
Diffstat (limited to 'libpthread/nptl/pthread_attr_init.c')
-rw-r--r-- | libpthread/nptl/pthread_attr_init.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libpthread/nptl/pthread_attr_init.c b/libpthread/nptl/pthread_attr_init.c index 3e38f37e8..610451840 100644 --- a/libpthread/nptl/pthread_attr_init.c +++ b/libpthread/nptl/pthread_attr_init.c @@ -29,7 +29,7 @@ int __attr_list_lock = LLL_LOCK_INITIALIZER; int attribute_protected -__pthread_attr_init_2_1 ( +pthread_attr_init ( pthread_attr_t *attr) { struct pthread_attr *iattr; @@ -47,4 +47,3 @@ __pthread_attr_init_2_1 ( return 0; } -weak_alias(__pthread_attr_init_2_1, pthread_attr_init) |