diff options
Diffstat (limited to 'toc.c')
-rw-r--r-- | toc.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -8,6 +8,14 @@ #include <limits.h> #include <stdint.h> #include <stdbool.h> + +typedef unsigned long long UInteger; +typedef long long Integer; +typedef long double Floating; /* OPTIM: Switch to double */ +#define INTEGER_MAX INT64_MAX +#define UINTEGER_FMT "%llu" +#define INTEGER_FMT "%lld" + #include "util/err.c" #include "util/arr.c" #include "util/blockarr.c" |