diff options
Diffstat (limited to 'htl/pt-join.c')
-rw-r--r-- | htl/pt-join.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/htl/pt-join.c b/htl/pt-join.c index 158c328af1..b141c4c8b9 100644 --- a/htl/pt-join.c +++ b/htl/pt-join.c @@ -27,7 +27,7 @@ /* Make calling thread wait for termination of thread THREAD. Return the exit status of the thread in *STATUS. */ int -pthread_join (pthread_t thread, void **status) +__pthread_join (pthread_t thread, void **status) { struct __pthread *pthread; int err = 0; @@ -75,3 +75,4 @@ pthread_join (pthread_t thread, void **status) return err; } +strong_alias (__pthread_join, pthread_join); |