summaryrefslogtreecommitdiff
path: root/libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sem_init.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2011-04-26 23:47:17 +0200
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2012-06-15 14:00:43 +0200
commitf0a3d118ea5b5c4e945941cd7b1bb243f0878e43 (patch)
treec56a15d2733ccb76f2f98c807972cd0473b12bed /libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sem_init.c
parente7575150911d8ee230d17ab7c03864df24a8be07 (diff)
NPTL: rename __new_sem_* to sem_*
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sem_init.c')
-rw-r--r--libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sem_init.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sem_init.c b/libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sem_init.c
index f694b5e93..90986b47c 100644
--- a/libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sem_init.c
+++ b/libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sem_init.c
@@ -26,7 +26,7 @@
int
-__new_sem_init (sem, pshared, value)
+sem_init (sem, pshared, value)
sem_t *sem;
int pshared;
unsigned int value;
@@ -53,5 +53,3 @@ __new_sem_init (sem, pshared, value)
return 0;
}
-weak_alias(__new_sem_init, sem_init)
-