From: Robert Bradshaw Date: Sun, 21 Feb 2010 04:48:56 +0000 (-0800) Subject: C99 inline X-Git-Tag: 0.13.beta0~336 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=29de3093ace9e0d1cf2fbd22db296ca26d153711;p=cython.git C99 inline --- diff --git a/Cython/Compiler/Nodes.py b/Cython/Compiler/Nodes.py index 1eb531e0..c80b0c0f 100644 --- a/Cython/Compiler/Nodes.py +++ b/Cython/Compiler/Nodes.py @@ -4982,6 +4982,8 @@ utility_function_predeclarations = \ #define CYTHON_INLINE __inline__ #elif defined(_MSC_VER) #define CYTHON_INLINE __inline + #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L + #define CYTHON_INLINE inline #else #define CYTHON_INLINE #endif