summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/Support/Windows/PathV2.inc2
-rw-r--r--lib/Support/Windows/Windows.h4
-rw-r--r--lib/Support/Windows/system_error.inc4
-rw-r--r--utils/unittest/UnitTestMain/TestMain.cpp2
4 files changed, 6 insertions, 6 deletions
diff --git a/lib/Support/Windows/PathV2.inc b/lib/Support/Windows/PathV2.inc
index b36b291c39..8effb0c737 100644
--- a/lib/Support/Windows/PathV2.inc
+++ b/lib/Support/Windows/PathV2.inc
@@ -17,7 +17,7 @@
//===----------------------------------------------------------------------===//
#include "Windows.h"
-#include <WinCrypt.h>
+#include <wincrypt.h>
#include <fcntl.h>
#include <io.h>
#include <sys/stat.h>
diff --git a/lib/Support/Windows/Windows.h b/lib/Support/Windows/Windows.h
index 6e0b585b97..dfa4be3a15 100644
--- a/lib/Support/Windows/Windows.h
+++ b/lib/Support/Windows/Windows.h
@@ -22,8 +22,8 @@
#define WIN32_LEAN_AND_MEAN
#include "llvm/Config/config.h" // Get build system configuration settings
-#include <Windows.h>
-#include <ShlObj.h>
+#include <windows.h>
+#include <shlobj.h>
#include <cassert>
#include <string>
diff --git a/lib/Support/Windows/system_error.inc b/lib/Support/Windows/system_error.inc
index 64753d0eea..37ec81dd36 100644
--- a/lib/Support/Windows/system_error.inc
+++ b/lib/Support/Windows/system_error.inc
@@ -17,8 +17,8 @@
//=== is guaranteed to work on *all* Windows variants.
//===----------------------------------------------------------------------===//
-#include <Windows.h>
-#include <WinError.h>
+#include <windows.h>
+#include <winerror.h>
using namespace llvm;
diff --git a/utils/unittest/UnitTestMain/TestMain.cpp b/utils/unittest/UnitTestMain/TestMain.cpp
index 4469c03f50..b35bae5abf 100644
--- a/utils/unittest/UnitTestMain/TestMain.cpp
+++ b/utils/unittest/UnitTestMain/TestMain.cpp
@@ -13,7 +13,7 @@
#if defined(LLVM_ON_WIN32)
-# include <Windows.h>
+# include <windows.h>
# if defined(_MSC_VER)
# include <crtdbg.h>
# endif