From 29de3093ace9e0d1cf2fbd22db296ca26d153711 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Sat, 20 Feb 2010 20:48:56 -0800 Subject: [PATCH] C99 inline --- Cython/Compiler/Nodes.py | 2 ++ 1 file changed, 2 insertions(+) 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 -- 2.26.2