nuclear@27: #ifndef VMATH_CONFIG_H_ nuclear@27: #define VMATH_CONFIG_H_ nuclear@27: nuclear@28: #ifdef __cplusplus nuclear@28: #define VMATH_INLINE inline nuclear@28: #elif (__STDC_VERSION__ < 199999) nuclear@27: #if defined(__GNUC__) || defined(_MSC_VER) nuclear@28: #define VMATH_INLINE __inline nuclear@27: #else nuclear@28: #define VMATH_INLINE nuclear@27: nuclear@27: #ifdef VECTOR_H_ nuclear@27: #warning "compiling vector operations without inline, performance might suffer" nuclear@27: #endif /* VECTOR_H_ */ nuclear@27: nuclear@27: #endif /* gcc/msvc */ nuclear@27: #endif /* not C99 */ nuclear@27: nuclear@27: #define SINGLE_PRECISION_MATH nuclear@27: nuclear@27: #endif /* VMATH_CONFIG_H_ */