musl-tcc/src/thread/thrd_exit.c

9 lines
146 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include <threads.h>
#include <pthread.h>
#include <stdint.h>
_Noreturn void thrd_exit(int result)
{
__pthread_exit((void*)(intptr_t)result);
}