summaryrefslogtreecommitdiff
path: root/src/_perthread.h
blob: 0f0139f83033a16db5a9d07d137c94ee1b4e80bb (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef ___PERTHREAD_H__
#define ___PERTHREAD_H__

#if defined __STDC_VERSION__ && 201112L <= __STDC_VERSION__ && !defined __STDC_NO_THREADS__
#define THREAD_LOCAL static _Thread_local
#else
#define THREAD_LOCAL static
#endif

#endif