summaryrefslogtreecommitdiff
path: root/src/threads/thrd_exit.c
blob: 0acdbcd821e409f4e5a1d84d62cc9704ff09b050 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <threads.h>
#include <pthread.h>

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

/*
STDC(201112)
*/