summaryrefslogtreecommitdiff
path: root/src/threads/thrd_exit.c
blob: 4b393d069e4be37e3bc35657daaeb52ddb2d284b (plain)
1
2
3
4
5
6
7
#include <threads.h>
#include <pthread.h>

_Noreturn void thrd_exit(int res)
{
	pthread_exit(&res);
}