Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Langley <agl@google.com>2015-03-21 02:32:23 +0300
committerAdam Langley <agl@google.com>2015-04-01 01:21:42 +0300
commit3e719319be86e782f3e7440bd9b017888af64897 (patch)
tree8fc4aa34dbafba0dc3cefb0cc0c65cfd0a2039fd /crypto/mem.c
parente2e13265ff9cb637f8d0cdefc27b13370848472f (diff)
Lowercase some Windows headers.
MinGW on Linux needs lowercase include files. On Windows this doesn't matter since the filesystems are case-insensitive, but building BoringSSL on Linux with MinGW has case-sensitive filesystems. Change-Id: Id9c120d819071b041341fbb978352812d6d073bc Reviewed-on: https://boringssl-review.googlesource.com/4090 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto/mem.c')
-rw-r--r--crypto/mem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/mem.c b/crypto/mem.c
index a8a8c084..ce414407 100644
--- a/crypto/mem.c
+++ b/crypto/mem.c
@@ -66,7 +66,7 @@
#if defined(OPENSSL_WINDOWS)
#pragma warning(push, 3)
-#include <Windows.h>
+#include <windows.h>
#pragma warning(pop)
#else
#include <strings.h>