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

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

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

/*
STDC(201112)
*/


#endif