diff options
Diffstat (limited to 'src/mathc99.cc')
-rw-r--r-- | src/mathc99.cc | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/src/mathc99.cc b/src/mathc99.cc index db71059..335446e 100644 --- a/src/mathc99.cc +++ b/src/mathc99.cc @@ -1,5 +1,18 @@ #include "mathc99.h"
-double found(double a) {
- return a > 0 ? floor(a+0.5) : ceil(a-0.5);
+#ifdef WIN32
+#include <algorithm>
+
+double round(double a) {
+ return a > 0 ? floor(a+0.5) : ceil(a-0.5);
+}
+
+float fmin(float a, float b) {
+ return std::min(a,b);
}
+
+float fmax(float a, float b) {
+ return std::max(a,b);
+}
+
+#endif
|