From 8b3772c0b93d872d500438ca7542fd7bfb9cbd9b Mon Sep 17 00:00:00 2001 From: epoch Date: Sun, 24 Dec 2017 04:32:37 -0600 Subject: changed real type to be double instead of double long --- src/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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; -- cgit v1.2.3