Commit 29de3093 authored by Robert Bradshaw's avatar Robert Bradshaw

C99 inline

parent eeacfc75
...@@ -4982,6 +4982,8 @@ utility_function_predeclarations = \ ...@@ -4982,6 +4982,8 @@ utility_function_predeclarations = \
#define CYTHON_INLINE __inline__ #define CYTHON_INLINE __inline__
#elif defined(_MSC_VER) #elif defined(_MSC_VER)
#define CYTHON_INLINE __inline #define CYTHON_INLINE __inline
#elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
#define CYTHON_INLINE inline
#else #else
#define CYTHON_INLINE #define CYTHON_INLINE
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment