summaryrefslogtreecommitdiff
path: root/src/threads/thrd_exit.c
blob: 1258bbf734bbc7287df0d99e946a933647745df9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#if 0

#include <threads.h>
#include <pthread.h>

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

/*
STDC(201112)
*/


#endif