fix: Missing pthread include

This commit is contained in:
WerWolv
2025-08-30 11:21:09 +02:00
parent bcbe5eb105
commit a9d45d837f

View File

@@ -24,6 +24,10 @@
#if defined (OS_WINDOWS) #if defined (OS_WINDOWS)
#include <windows.h> #include <windows.h>
#if !defined(_MSC_VER)
#include <pthread.h>
#endif
#elif defined (OS_MACOS) #elif defined (OS_MACOS)
#include <sys/utsname.h> #include <sys/utsname.h>
#endif #endif