[Support] Fix building for mingw on a case sensitive file system

This fixes cross building on a case sensitive file system after
2e613d2ded. (The official Windows
SDKs don't have self-consistent casing and can't be used as such on
case sentisive file systems without case fixups, while mingw headers
consistently use lower case.)
This commit is contained in:
Martin Storsjö 2020-06-20 00:39:22 +03:00
parent d150662024
commit cdbd299800
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@
#include "llvm/Support/Windows/WindowsSupport.h"
#include "llvm/Support/WindowsError.h"
#include "llvm/Support/raw_ostream.h"
#include <Psapi.h>
#include <psapi.h>
#include <cstdio>
#include <fcntl.h>
#include <io.h>