mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-16 18:16:24 -05:00
13 lines
237 B
C
13 lines
237 B
C
#ifndef _MSL_THREAD_LOCAL_DATA_H
|
|
#define _MSL_THREAD_LOCAL_DATA_H
|
|
|
|
#include <ansi_params.h>
|
|
|
|
#if _MSL_THREADSAFE && _MSL_LOCALDATA_AVAILABLE
|
|
#if _MSL_PTHREADS
|
|
#include <thread_local_data_pthreads.h>
|
|
#endif
|
|
#endif
|
|
|
|
#endif
|