diff options
Diffstat (limited to 'nptl/pthread_self.c')
-rw-r--r-- | nptl/pthread_self.c | 3 |
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) |