diff options
author | Martin Storsjo <martin@martin.st> | 2017-07-31 06:01:39 +0000 |
---|---|---|
committer | Martin Storsjo <martin@martin.st> | 2017-07-31 06:01:39 +0000 |
commit | 1421294197a63a343207b96347efa718962752cd (patch) | |
tree | c6d5bb080af163e46808daa42bb7c01114e936e4 /lib/builtins | |
parent | 9b7feef3201de0c6b551747085c3a1be8d64f80e (diff) |
[builtins] Fix mingw-w64 cross compilation
Lowercase the Windows.h include in enable_execute_stack.c, just as in
emutls.c in SVN r302340.
Differential Revision: https://reviews.llvm.org/D36066
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@309537 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/builtins')
-rw-r--r-- | lib/builtins/enable_execute_stack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/builtins/enable_execute_stack.c b/lib/builtins/enable_execute_stack.c index 0dc3482c4..327d460b4 100644 --- a/lib/builtins/enable_execute_stack.c +++ b/lib/builtins/enable_execute_stack.c @@ -22,7 +22,7 @@ #ifdef _WIN32 #define WIN32_LEAN_AND_MEAN -#include <Windows.h> +#include <windows.h> #else #ifndef __APPLE__ #include <unistd.h> |