blob: 5559bb60ebddb6016281619d1312a80749968983 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef ___PERTHREAD_H__
#define ___PERTHREAD_H__
#if defined __STDC_VERSION__ && 201112L <= __STDC_VERSION__ && !defined __STDC_N
O_THREADS__
#define THREAD_LOCAL static _Thread_local
#else
#define THREAD_LOCAL static
#endif
#endif
|