diff options
author | meta <s@w23.at> | 2011-01-17 23:52:45 (GMT) |
---|---|---|
committer | meta <s@w23.at> | 2011-01-17 23:52:45 (GMT) |
commit | 438d5cfbc80b128f49c31e57749f937fecfe01b2 (patch) | |
tree | eb0dce609cbb504ade8ee6cfd0241ccc3c03196b /src/mathc99.h | |
parent | 5c9ca91c2ce39f23246c95d23a982ac0f5721e28 (diff) |
add some more missing C99 math.h functions
Diffstat (limited to 'src/mathc99.h')
-rw-r--r-- | src/mathc99.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mathc99.h b/src/mathc99.h index 4d5d3be..ebc2d66 100644 --- a/src/mathc99.h +++ b/src/mathc99.h @@ -6,6 +6,8 @@ #include <cmath>
//for native win32 builds we need to provide C99 math functions by ourselves
double round(double a);
+float fmin(float a, float b);
+float fmax(float a, float b);
#else
|