Merge pull request #1883 from Ericson2314/fix-mingw-cross

Fix MinGW cross
This commit is contained in:
Yann Collet 2019-11-27 14:48:26 -08:00 committed by GitHub
commit 93ec5cfd05
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 25 deletions

View file

@ -41,7 +41,7 @@ extern "C" {
******************************************/
#if defined(_WIN32) /* Windows */
#include <Windows.h> /* LARGE_INTEGER */
#include <windows.h> /* LARGE_INTEGER */
typedef LARGE_INTEGER UTIL_time_t;
#define UTIL_TIME_INITIALIZER { { 0, 0 } }