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