Use same mingw macro in codebase for consistency

This commit is contained in:
Lealem Amedie
2023-10-17 10:22:17 -06:00
parent 5bc2edd5ad
commit 286d551ad0

View File

@@ -60,7 +60,7 @@
/* THREADING/MUTEX SECTION */ /* THREADING/MUTEX SECTION */
#ifdef USE_WINDOWS_API #ifdef USE_WINDOWS_API
#if defined(MINGW32) && !defined(SINGLE_THREADED) #if defined(__MINGW32__) && !defined(SINGLE_THREADED)
#define WOLFSSL_PTHREADS #define WOLFSSL_PTHREADS
#include <pthread.h> #include <pthread.h>
#endif #endif