Add support for (signed) __int128

This commit is contained in:
Pieter Wuille 2020-08-12 17:41:08 -07:00
parent 979961c506
commit 02b6c87b52
1 changed files with 1 additions and 0 deletions

View File

@ -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 */