[libFuzzer] [Windows] Include windows.h and psapi.h with lowercase

This fixes building on a case sensitive filesystem with mingw-w64
headers, where all headers are lowercase, and matches how these
headers are included elsewhere in compiler-rt.

Also include these headers with angle brackets, as they are system
headers.

Differential Revision: https://reviews.llvm.org/D51913

llvm-svn: 341983
This commit is contained in:
Martin Storsjo 2018-09-11 19:11:54 +00:00
parent 941615e4c8
commit e199a2d434
2 changed files with 3 additions and 3 deletions

View File

@ -13,10 +13,10 @@
#include "FuzzerExtFunctions.h"
#include "FuzzerIO.h"
#include "Windows.h"
#include <windows.h>
// This must be included after Windows.h.
#include "Psapi.h"
#include <psapi.h>
namespace fuzzer {

View File

@ -24,7 +24,7 @@
#include <windows.h>
// This must be included after windows.h.
#include <Psapi.h>
#include <psapi.h>
namespace fuzzer {