From c14f1227af347fbdd2f190f83e4a26a1abf0abed Mon Sep 17 00:00:00 2001 From: wiire-a Date: Sat, 6 Jan 2018 20:59:51 +0100 Subject: [PATCH] Fixed another redefinition of ulong64 This one was caught only after testing on FreeBSD. --- src/crypto/tfm/tfm.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/crypto/tfm/tfm.h b/src/crypto/tfm/tfm.h index 49a4b2c..bf54c03 100644 --- a/src/crypto/tfm/tfm.h +++ b/src/crypto/tfm/tfm.h @@ -273,7 +273,10 @@ #if defined(FP_64BIT) /* for GCC only on supported platforms */ #ifndef CRYPT - typedef unsigned long long ulong64; + #ifndef LTC_ULONG64 + #define LTC_ULONG64 + typedef unsigned long long ulong64; + #endif #endif /* CRYPT */ typedef ulong64 fp_digit;