diff options
Diffstat (limited to 'nptl/pthread_cond_wait.c')
-rw-r--r-- | nptl/pthread_cond_wait.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nptl/pthread_cond_wait.c b/nptl/pthread_cond_wait.c index 0e3e87fd61..1e74418097 100644 --- a/nptl/pthread_cond_wait.c +++ b/nptl/pthread_cond_wait.c @@ -22,7 +22,7 @@ int -pthread_cond_wait (cond, mutex) +__pthread_cond_wait (cond, mutex) pthread_cond_t *cond; pthread_mutex_t *mutex; { @@ -64,3 +64,4 @@ pthread_cond_wait (cond, mutex) return err; } +strong_alias (__pthread_cond_wait, pthread_cond_wait) |