diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-02-04 12:53:04 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-02-04 12:53:04 +0000 |
commit | 5a3ff5b5a09d8445e5f3f51d198b8b7c3668473e (patch) | |
tree | 594ce1329ed7bb7b674e2cf23b15472020046af7 /llvm/lib/Support/Windows/system_error.inc | |
parent | 4d5c297607e6db63b6f586ddd04477659adb6590 (diff) | |
download | bcm5719-llvm-5a3ff5b5a09d8445e5f3f51d198b8b7c3668473e.tar.gz bcm5719-llvm-5a3ff5b5a09d8445e5f3f51d198b8b7c3668473e.zip |
Make Win32's header file name lower for cross build on case-sensitive filesystem.
llvm-svn: 124864
Diffstat (limited to 'llvm/lib/Support/Windows/system_error.inc')
-rw-r--r-- | llvm/lib/Support/Windows/system_error.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Support/Windows/system_error.inc b/llvm/lib/Support/Windows/system_error.inc index 64753d0eea8..37ec81dd363 100644 --- a/llvm/lib/Support/Windows/system_error.inc +++ b/llvm/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; |