23614b0f
1 2 3 4 5 6 7 8 9
#include "pthread_impl.h" #include <threads.h> _Noreturn void __pthread_exit(void *); _Noreturn void thrd_exit(int result) { __pthread_exit((void*)(intptr_t)result); }