aboutsummaryrefslogtreecommitdiffstats
path: root/src/int_math.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/int_math.h')
-rw-r--r--src/int_math.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/int_math.h b/src/int_math.h
index 34ceba64..b2e66856 100644
--- a/src/int_math.h
+++ b/src/int_math.h
@@ -19,6 +19,8 @@
#include <stdint.h>
+#define MIN(x, y) ((x) < (y) ? (x) : (y))
+
static const uint64_t POW10[] = {1ull,
10ull,
100ull,