Use lower-case include filenames to improve compatibility with MinGW.

This commit is contained in:
Kevin Menard 2021-02-19 12:06:21 -05:00
parent 2762784364
commit cd6f0392d1
9 changed files with 10 additions and 10 deletions

View file

@ -19,7 +19,7 @@
#endif
#ifdef _WIN32
#include <Windows.h>
#include <windows.h>
static void msleep(unsigned long msecs) { Sleep(msecs); }
#else
#include <unistd.h>

View file

@ -273,7 +273,7 @@ static void (*thread_entry_fun)(intptr_t) = &stress;
#ifdef _WIN32
#include <Windows.h>
#include <windows.h>
static DWORD WINAPI thread_entry(LPVOID param) {
thread_entry_fun((intptr_t)param);