summaryrefslogtreecommitdiff
path: root/nptl/pthread_self.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-12-15 19:59:08 +0000
committerUlrich Drepper <drepper@redhat.com>2002-12-15 19:59:08 +0000
commit8361400815265a29038f6833d12fc8e830340d84 (patch)
tree24e25e7249e7830956a1b72927039ea5cf4ef510 /nptl/pthread_self.c
parent7ad6b6eb3a2dc3a146102e95a223554df67aa7fe (diff)
Add namespace protected alias.
Diffstat (limited to 'nptl/pthread_self.c')
-rw-r--r--nptl/pthread_self.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/nptl/pthread_self.c b/nptl/pthread_self.c
index ad231cd928..f0e3b3f98c 100644
--- a/nptl/pthread_self.c
+++ b/nptl/pthread_self.c
@@ -22,7 +22,8 @@
pthread_t
-pthread_self (void)
+__pthread_self (void)
{
return (pthread_t) THREAD_SELF;
}
+strong_alias (__pthread_self, pthread_self)