C99 inline
authorRobert Bradshaw <robertwb@math.washington.edu>
Sun, 21 Feb 2010 04:48:56 +0000 (20:48 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Sun, 21 Feb 2010 04:48:56 +0000 (20:48 -0800)
Cython/Compiler/Nodes.py

index 1eb531e0079e8c38fff97d8f526db0dbd45e36c1..c80b0c0f7d2b78c6e47d9f02eafb3124f5520668 100644 (file)
@@ -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