1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef MATHC99_H_ #define MATHC99_H_ #ifdef WIN32 #include <cmath> //for native win32 builds we need to provide C99 math functions by ourselves double round(double a); #else #include <math.h> #endif #endif