summaryrefslogtreecommitdiff
path: root/libpthread/nptl/sysdeps/unix/sysv/linux/sem_post.c
diff options
context:
space:
mode:
Diffstat (limited to 'libpthread/nptl/sysdeps/unix/sysv/linux/sem_post.c')
-rw-r--r--libpthread/nptl/sysdeps/unix/sysv/linux/sem_post.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/sem_post.c b/libpthread/nptl/sysdeps/unix/sysv/linux/sem_post.c
index edb97c4ba..f0e8e3518 100644
--- a/libpthread/nptl/sysdeps/unix/sysv/linux/sem_post.c
+++ b/libpthread/nptl/sysdeps/unix/sysv/linux/sem_post.c
@@ -26,7 +26,7 @@
#include <tls.h>
int
-__new_sem_post (sem_t *sem)
+sem_post (sem_t *sem)
{
struct new_sem *isem = (struct new_sem *) sem;
@@ -55,4 +55,3 @@ __new_sem_post (sem_t *sem)
}
return 0;
}
-weak_alias(__new_sem_post, sem_post)