summaryrefslogtreecommitdiff
path: root/lib/sail.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sail.h')
-rw-r--r--lib/sail.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/sail.h b/lib/sail.h
index dfff7872..bbdccd09 100644
--- a/lib/sail.h
+++ b/lib/sail.h
@@ -82,6 +82,8 @@ void concat_str(sail_string *stro, const sail_string str1, const sail_string str
typedef int64_t mach_int;
+bool EQUAL(mach_int)(const mach_int, const mach_int);
+
/*
* Integers can be either stack-allocated as 128-bit integers if
* __int128 is available, or use GMP arbitrary precision
@@ -165,6 +167,8 @@ typedef uint64_t mach_bits;
bool eq_bit(const mach_bits a, const mach_bits b);
+bool EQUAL(mach_bits)(const mach_bits, const mach_bits);
+
typedef struct {
mp_bitcnt_t len;
mpz_t *bits;