diff options
Diffstat (limited to 'libpthread/nptl/sysdeps/unix/sysv/linux/sem_post.c')
-rw-r--r-- | libpthread/nptl/sysdeps/unix/sysv/linux/sem_post.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/sem_post.c b/libpthread/nptl/sysdeps/unix/sysv/linux/sem_post.c index 671b43f7f..7f0b67918 100644 --- a/libpthread/nptl/sysdeps/unix/sysv/linux/sem_post.c +++ b/libpthread/nptl/sysdeps/unix/sysv/linux/sem_post.c @@ -24,8 +24,6 @@ #include <internaltypes.h> #include <semaphore.h> -#include <shlib-compat.h> - int __new_sem_post (sem_t *sem) { @@ -40,8 +38,4 @@ __new_sem_post (sem_t *sem) } return 0; } -versioned_symbol (libpthread, __new_sem_post, sem_post, GLIBC_2_1); -#if SHLIB_COMPAT (libpthread, GLIBC_2_0, GLIBC_2_1) -strong_alias (__new_sem_post, __old_sem_post) -compat_symbol (libpthread, __old_sem_post, sem_post, GLIBC_2_0); -#endif +weak_alias(__new_sem_post, sem_post) |