From 02b6c87b52dbac1557b689ab2ebc8b91d67fd0f3 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Wed, 12 Aug 2020 17:41:08 -0700 Subject: [PATCH] Add support for (signed) __int128 --- src/util.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util.h b/src/util.h index eb4db4faf53bf..1070e0aca21ba 100644 --- a/src/util.h +++ b/src/util.h @@ -238,6 +238,7 @@ static SECP256K1_INLINE void secp256k1_int_cmov(int *r, const int *a, int flag) #endif #if defined(SECP256K1_WIDEMUL_INT128) SECP256K1_GNUC_EXT typedef unsigned __int128 uint128_t; +SECP256K1_GNUC_EXT typedef __int128 int128_t; #endif #endif /* SECP256K1_UTIL_H */