correct for non-glibc systems

This commit is contained in:
mahlemiut
2016-02-08 23:13:47 +13:00
parent be213a402b
commit e28fd19601

View File

@@ -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;