From: Andy Polyakov Date: Wed, 24 Sep 2014 22:32:56 +0000 (+0200) Subject: e_os.h: allow inline functions to be compiled by legacy compilers. X-Git-Tag: OpenSSL_0_9_8zd~29 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=af32df0a8e662914f78c93736466c746f83dfe84;p=oweals%2Fopenssl.git e_os.h: allow inline functions to be compiled by legacy compilers. Reviewed-by: Matt Caswell (cherry picked from commit 40155f408985aff2e9f1b61b7cb04a3e518633a1) Conflicts: e_os.h --- diff --git a/e_os.h b/e_os.h index 532ec6bebf..960959a486 100644 --- a/e_os.h +++ b/e_os.h @@ -360,15 +360,6 @@ static unsigned int _strlen31(const char *str) # define DEFAULT_HOME "C:" # 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 */ # ifdef OPENSSL_SYS_VMS @@ -711,6 +702,23 @@ struct servent *getservbyname(const char *name, const char *proto); #endif /* end vxworks */ +#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(_MSC_VER) + /* + * Visual Studio: inline is available in C++ only, however + * __inline is available for C, see + * http://msdn.microsoft.com/en-us/library/z8y1yy88.aspx + */ +# define inline __inline +# else +# define inline +# endif +#endif + #ifdef __cplusplus } #endif