diff options
Diffstat (limited to 'src/int_math.h')
-rw-r--r-- | src/int_math.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/int_math.h b/src/int_math.h index b2e66856..85305a4a 100644 --- a/src/int_math.h +++ b/src/int_math.h @@ -20,6 +20,7 @@ #include <stdint.h> #define MIN(x, y) ((x) < (y) ? (x) : (y)) +#define MAX(x, y) ((x) > (y) ? (x) : (y)) static const uint64_t POW10[] = {1ull, 10ull, |