summaryrefslogtreecommitdiff
path: root/libpthread/nptl/sysdeps/unix/sysv/linux/sem_wait.c
diff options
context:
space:
mode:
Diffstat (limited to 'libpthread/nptl/sysdeps/unix/sysv/linux/sem_wait.c')
-rw-r--r--libpthread/nptl/sysdeps/unix/sysv/linux/sem_wait.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/sem_wait.c b/libpthread/nptl/sysdeps/unix/sysv/linux/sem_wait.c
index e661e09c8..1c5008f6c 100644
--- a/libpthread/nptl/sysdeps/unix/sysv/linux/sem_wait.c
+++ b/libpthread/nptl/sysdeps/unix/sysv/linux/sem_wait.c
@@ -38,7 +38,7 @@ __sem_wait_cleanup (void *arg)
int
-__new_sem_wait (sem_t *sem)
+sem_wait (sem_t *sem)
{
struct new_sem *isem = (struct new_sem *) sem;
int err;
@@ -81,4 +81,3 @@ __new_sem_wait (sem_t *sem)
return err;
}
-weak_alias(__new_sem_wait, sem_wait)