diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-16 01:02:50 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-16 01:02:50 +0000 |
commit | a1915d4502e23cc0c30e1c80a31971e71e7340a5 (patch) | |
tree | 8502cb726a6ab5f8f041ab9ea6ea7dcca7b4c36b /libc/misc/pthread | |
parent | b865ce517bd48ce9f11dac018d350ed69a533e2b (diff) |
Convert users
Diffstat (limited to 'libc/misc/pthread')
-rw-r--r-- | libc/misc/pthread/weaks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/pthread/weaks.c b/libc/misc/pthread/weaks.c index b28470251..4b9e02672 100644 --- a/libc/misc/pthread/weaks.c +++ b/libc/misc/pthread/weaks.c @@ -107,7 +107,7 @@ weak_alias (__pthread_return_1, pthread_equal) void weak_function pthread_exit (void *retval) { - exit (EXIT_SUCCESS); + __exit (EXIT_SUCCESS); } */ |