diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-15 19:59:08 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-15 19:59:08 +0000 |
commit | 8361400815265a29038f6833d12fc8e830340d84 (patch) | |
tree | 24e25e7249e7830956a1b72927039ea5cf4ef510 /nptl/pthread_cond_wait.c | |
parent | 7ad6b6eb3a2dc3a146102e95a223554df67aa7fe (diff) | |
download | glibc-8361400815265a29038f6833d12fc8e830340d84.tar.gz glibc-8361400815265a29038f6833d12fc8e830340d84.tar.xz glibc-8361400815265a29038f6833d12fc8e830340d84.zip |
Add namespace protected alias.
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) |