Fix case of include file name

Windows.h works on Windows, but not for cross builds on Linux hosts
with case sensitive file systems which only provide windows.h.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
Stefan Weil 2015-11-04 22:53:32 +01:00
parent 3272b62201
commit 511e7f7908

View File

@ -1,5 +1,5 @@
#ifdef _WIN32 #ifdef _WIN32
#include <Windows.h> #include <windows.h>
#include <io.h> #include <io.h>
#else #else