summaryrefslogtreecommitdiff
path: root/src/mathc99.h
blob: 4d5d3beec2e9e1780336be3384747a103e85431b (plain)
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
contact: Jan Huwald // Impressum