mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-26 06:45:37 +03:00
11 lines
234 B
C
11 lines
234 B
C
|
#ifndef _INCLUDE_SOURCEMOD_THREAD_SUPPORT_H
|
||
|
#define _INCLUDE_SOURCEMOD_THREAD_SUPPORT_H
|
||
|
|
||
|
#if defined __linux__
|
||
|
#include "PosixThreads.h"
|
||
|
#elif defined WIN32
|
||
|
#include "WinThreads.h"
|
||
|
#endif
|
||
|
|
||
|
#endif //_INCLUDE_SOURCEMOD_THREAD_SUPPORT_H
|