diff options
author | 2002-12-15 19:59:08 +0000 | |
---|---|---|
committer | 2002-12-15 19:59:08 +0000 | |
commit | 8361400815265a29038f6833d12fc8e830340d84 (patch) | |
tree | 24e25e7249e7830956a1b72927039ea5cf4ef510 /nptl/pthread_cond_broadcast.c | |
parent | 2002-12-14 Olaf Hering <olh@suse.de> (diff) | |
download | glibc-8361400815265a29038f6833d12fc8e830340d84.tar.gz glibc-8361400815265a29038f6833d12fc8e830340d84.tar.bz2 glibc-8361400815265a29038f6833d12fc8e830340d84.zip |
Add namespace protected alias.
Diffstat (limited to 'nptl/pthread_cond_broadcast.c')
-rw-r--r-- | nptl/pthread_cond_broadcast.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nptl/pthread_cond_broadcast.c b/nptl/pthread_cond_broadcast.c index 20cc39f269..ac6dca374a 100644 --- a/nptl/pthread_cond_broadcast.c +++ b/nptl/pthread_cond_broadcast.c @@ -21,10 +21,11 @@ int -pthread_cond_broadcast (cond) +__pthread_cond_broadcast (cond) pthread_cond_t *cond; { lll_cond_broadcast (cond); return 0; } +strong_alias (__pthread_cond_broadcast, pthread_cond_broadcast) |