blob: 93de999e76aaab39328f290ca2305db959427428 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
diff --git a/tc2cfr/Backend.cpp b/tc2cfr/Backend.cpp
index f6c641e..29f690e 100644
--- a/tc2cfr/Backend.cpp
+++ b/tc2cfr/Backend.cpp
@@ -24,6 +24,7 @@
*/
#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
#include <math.h>
@@ -32,9 +33,11 @@
#include "Backend.h"
+/*
inline int round(double x){
return (int)(floor(x+0.5));
}
+*/
inline bool isInt(double x){
return abs(x-round(x))<=0.0001;
|