summaryrefslogtreecommitdiffstats
path: root/e_os.h
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2014-09-30 21:05:33 +0200
committerAndy Polyakov <appro@openssl.org>2014-09-30 21:05:33 +0200
commit55c7a4cf112bf154ed405ee05a6b7924b6b1ba92 (patch)
tree0858a895932d4099f81c1f0ed70cbb669fba72ab /e_os.h
parent323154be3326a329f768958e9229585a84985747 (diff)
e_os.h: refine inline override logic (to address warnings in debug build).
Reviewed-by: Dr Stephen Henson <steve@openssl.org>
Diffstat (limited to 'e_os.h')
-rw-r--r--e_os.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/e_os.h b/e_os.h
index a5a2607b8f..141eda67cb 100644
--- a/e_os.h
+++ b/e_os.h
@@ -274,7 +274,7 @@ extern "C" {
# ifdef _WIN64
# define strlen(s) _strlen31(s)
/* cut strings to 2GB */
-static unsigned int _strlen31(const char *str)
+static __inline unsigned int _strlen31(const char *str)
{
unsigned int len=0;
while (*str && len<0x80000000U) str++, len++;
@@ -657,6 +657,13 @@ extern char *sys_errlist[]; extern int sys_nerr;
#define DG_GCC_BUG /* gcc < 2.6.3 on DGUX */
+#ifdef sgi
+#define IRIX_CC_BUG /* all version of IRIX I've tested (4.* 5.*) */
+#endif
+#ifdef OPENSSL_SYS_SNI
+#define IRIX_CC_BUG /* CDS++ up to V2.0Bsomething suffered from the same bug.*/
+#endif
+
#if defined(OPENSSL_SYS_WINDOWS)
# define strcasecmp _stricmp
# define strncasecmp _strnicmp
@@ -720,8 +727,8 @@ struct servent *getservbyname(const char *name, const char *proto);
#if !defined(inline) && !defined(__cplusplus)
# if defined(__STDC_VERSION__) && __STDC_VERSION__>=199901L
/* do nothing, inline works */
-# elif defined(__GNUC__) && __GNUC__>=3 && !defined(__NO_INLINE__)
- /* do nothing, inline works */
+# elif defined(__GNUC__) && __GNUC__>=2
+# define inline __inline__
# elif defined(_MSC_VER)
/*
* Visual Studio: inline is available in C++ only, however