diff options
Diffstat (limited to 'nptl/pthread_exit.c')
-rw-r--r-- | nptl/pthread_exit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nptl/pthread_exit.c b/nptl/pthread_exit.c index 82065576a1..85d8fd4565 100644 --- a/nptl/pthread_exit.c +++ b/nptl/pthread_exit.c @@ -22,10 +22,11 @@ void -pthread_exit (value) +__pthread_exit (value) void *value; { THREAD_SETMEM (THREAD_SELF, result, value); __do_cancel (); } +strong_alias (__pthread_exit, pthread_exit) |