goat3d

view libs/vmath/vmath_config.h @ 53:6d514398a728

fixed a merge mistake
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 17 Jan 2014 18:30:35 +0200
parents 4deb0b12fe14
children
line source
1 #ifndef VMATH_CONFIG_H_
2 #define VMATH_CONFIG_H_
4 #ifdef __cplusplus
5 #define VMATH_INLINE inline
6 #elif (__STDC_VERSION__ < 199999)
7 #if defined(__GNUC__) || defined(_MSC_VER)
8 #define VMATH_INLINE __inline
9 #else
10 #define VMATH_INLINE
12 #ifdef VECTOR_H_
13 #warning "compiling vector operations without inline, performance might suffer"
14 #endif /* VECTOR_H_ */
16 #endif /* gcc/msvc */
17 #endif /* not C99 */
19 #define SINGLE_PRECISION_MATH
21 #endif /* VMATH_CONFIG_H_ */