openscad/src/mathc99.h

17 lines
280 B
C

#pragma once
#ifdef WIN32
#include <cmath>
//for native win32 builds we need to provide C99 math functions by ourselves
double trunc(double a);
double round(double a);
float fmin(float a, float b);
float fmax(float a, float b);
#else
#include <math.h>
#endif