forked from OSchip/llvm-project
[fuzzer] Fix building on case sensitive mingw platforms
Include windows.h with an all lowercase filename; Windows SDK headers
aren't self consistent so they can't be used in an entirely
case sensitive setting, and mingw headers use all lowercase names
for such headers.
This fixes building after 881faf4190
.
This commit is contained in:
parent
a1b21ed3fb
commit
ab737d5367
|
@ -12,7 +12,7 @@
|
|||
#include <cstdint>
|
||||
|
||||
#if LIBFUZZER_WINDOWS
|
||||
#include <Windows.h>
|
||||
#include <windows.h>
|
||||
|
||||
namespace fuzzer {
|
||||
|
||||
|
|
Loading…
Reference in New Issue