aboutsummaryrefslogtreecommitdiff
path: root/openssl/e_os.h
diff options
context:
space:
mode:
authorMike DePaulo <mikedep333@gmail.com>2014-10-18 19:59:47 -0400
committerMike DePaulo <mikedep333@gmail.com>2015-02-28 07:16:10 -0500
commita1babdda61e8cb3f8d0608d87120ba46ca91a21d (patch)
tree633a4386cd59bc6ef0b809b67ca1cc0bb494218f /openssl/e_os.h
parent8fafe3481b134a4d368ba57e3698754a6a45c4c1 (diff)
downloadvcxsrv-a1babdda61e8cb3f8d0608d87120ba46ca91a21d.tar.gz
vcxsrv-a1babdda61e8cb3f8d0608d87120ba46ca91a21d.tar.bz2
vcxsrv-a1babdda61e8cb3f8d0608d87120ba46ca91a21d.zip
Update openssl to version openssl-1.0.1j
Diffstat (limited to 'openssl/e_os.h')
-rw-r--r--openssl/e_os.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/openssl/e_os.h b/openssl/e_os.h
index 6a0aad1de..733155e48 100644
--- a/openssl/e_os.h
+++ b/openssl/e_os.h
@@ -373,7 +373,16 @@ static unsigned int _strlen31(const char *str)
# define check_winnt() (1)
#else
# define check_winnt() (GetVersion() < 0x80000000)
-#endif
+#endif
+
+/*
+ * Visual Studio: inline is available in C++ only, however
+ * __inline is available for C, see
+ * http://msdn.microsoft.com/en-us/library/z8y1yy88.aspx
+ */
+#if defined(_MSC_VER) && !defined(__cplusplus) && !defined(inline)
+# define inline __inline
+#endif
#else /* The non-microsoft world */
@@ -738,4 +747,3 @@ struct servent *getservbyname(const char *name, const char *proto);
#endif
#endif
-