blob: 0ccca6a7c75129434177be468f6ccd66b1a0fda5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#if 0
#include <threads.h>
#include <pthread.h>
_Noreturn void thrd_exit(int res)
{
SIGNAL_SAFE(0);
pthread_exit(&res);
}
__vcheck_1(thrd_exit, int)
/*
STDC(201112)
*/
#endif
|