diff options
Diffstat (limited to 'nptl/pthread_testcancel.c')
-rw-r--r-- | nptl/pthread_testcancel.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/nptl/pthread_testcancel.c b/nptl/pthread_testcancel.c index 51be09fc5b..fdef69967b 100644 --- a/nptl/pthread_testcancel.c +++ b/nptl/pthread_testcancel.c @@ -21,7 +21,9 @@ void -pthread_testcancel (void) +__pthread_testcancel (void) { CANCELLATION_P (THREAD_SELF); } +strong_alias (__pthread_testcancel, pthread_testcancel) +hidden_def (__pthread_testcancel) |