istereo2

annotate libs/vmath/vmath_config.h @ 13:ea928c313344

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