summaryrefslogtreecommitdiff
path: root/src/thread/thrd_exit.c
blob: 9b291ae3db2de16b19c90f504c8e9e7102e10adb (plain) (blame)
1
2
3
4
5
6
7
8
#include <threads.h>
#include <pthread.h>
#include <stdint.h>

_Noreturn void thrd_exit(int result)
{
	__pthread_exit((void*)(intptr_t)result);
}