(thread.h) Add defined(_WIN32) && !defined(_XBOX) rule for including

windows.h when RARCH_INTERNAL is undefined - for Sleep
This commit is contained in:
twinaphex 2014-06-20 20:38:46 +02:00
parent f274a99d84
commit ae1ddad530

View File

@ -64,6 +64,8 @@ void scond_signal(scond_t *cond);
#include <unistd.h>
#elif defined(PSP)
#include <pspthreadman.h>
#elif defined(_WIN32) && !defined(_XBOX)
#include <windows.h>
#else
#include <time.h>
#endif