[Windows] Include BaseTsd.h with lowercase
authorMartin Storsjo <martin@martin.st>
Mon, 10 Sep 2018 20:28:06 +0000 (20:28 +0000)
committerMartin Storsjo <martin@martin.st>
Mon, 10 Sep 2018 20:28:06 +0000 (20:28 +0000)
This fixes building on a case sensitive filesystem with mingw-w64
headers, where all headers are lowercase. This header actually also
is named with a lowercase name in the Windows SDK as well.

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

llvm-svn: 341857

compiler-rt/lib/profile/WindowsMMap.h

index 271619a..ac2c911 100644 (file)
@@ -12,7 +12,7 @@
 
 #if defined(_WIN32)
 
-#include <BaseTsd.h>
+#include <basetsd.h>
 #include <io.h>
 #include <sys/types.h>