mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-18 04:53:06 +01:00
correct for non-glibc systems
This commit is contained in:
@@ -8,8 +8,10 @@
|
||||
|
||||
#if BX_PLATFORM_POSIX
|
||||
# include <pthread.h>
|
||||
#if !((__GLIBC__ > 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 12)))
|
||||
#include <sys/prctl.h>
|
||||
#if defined(__GLIBC__)
|
||||
#if!((__GLIBC__ > 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 12)))
|
||||
#include <sys/prctl.h>
|
||||
#endif
|
||||
#endif
|
||||
#elif BX_PLATFORM_WINRT
|
||||
using namespace Platform;
|
||||
|
||||
Reference in New Issue
Block a user