diff options
Diffstat (limited to 'libpthread/nptl/sem_destroy.c')
-rw-r--r-- | libpthread/nptl/sem_destroy.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libpthread/nptl/sem_destroy.c b/libpthread/nptl/sem_destroy.c index 6362c0e3c..05d9ae029 100644 --- a/libpthread/nptl/sem_destroy.c +++ b/libpthread/nptl/sem_destroy.c @@ -22,7 +22,7 @@ int -__new_sem_destroy ( +sem_destroy ( sem_t *sem) { /* XXX Check for valid parameter. */ @@ -30,4 +30,3 @@ __new_sem_destroy ( /* Nothing to do. */ return 0; } -weak_alias(__new_sem_destroy, sem_destroy) |