8 lines
135 B
C++
8 lines
135 B
C++
#include "platform.hpp"
|
|
|
|
#if defined(PLATFORM_LINUX)
|
|
#include "semaphore_linux.hpp"
|
|
#else
|
|
#include "semaphore_win32.hpp"
|
|
#endif
|