diff options
-rw-r--r-- | src/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.h b/src/common.h index c99194d..dd3780a 100644 --- a/src/common.h +++ b/src/common.h @@ -12,7 +12,7 @@ #define min(a,b) (((a)<(b))?(a):(b)) #define max(a,b) (((a)>(b))?(a):(b)) -typedef double long real; +typedef double real; typedef struct { real r; |