goat3d

annotate libs/vmath/vmath_config.h @ 27:4deb0b12fe14

wtf... corrupted heap?
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 29 Sep 2013 08:20:19 +0300
parents
children 9ba3e2fb8a33
rev   line source
nuclear@27 1 #ifndef VMATH_CONFIG_H_
nuclear@27 2 #define VMATH_CONFIG_H_
nuclear@27 3
nuclear@27 4 #if (__STDC_VERSION__ < 199999)
nuclear@27 5 #if defined(__GNUC__) || defined(_MSC_VER)
nuclear@27 6 #define inline __inline
nuclear@27 7 #else
nuclear@27 8 #define inline
nuclear@27 9
nuclear@27 10 #ifdef VECTOR_H_
nuclear@27 11 #warning "compiling vector operations without inline, performance might suffer"
nuclear@27 12 #endif /* VECTOR_H_ */
nuclear@27 13
nuclear@27 14 #endif /* gcc/msvc */
nuclear@27 15 #endif /* not C99 */
nuclear@27 16
nuclear@27 17 #define SINGLE_PRECISION_MATH
nuclear@27 18
nuclear@27 19 #endif /* VMATH_CONFIG_H_ */