Fixed another redefinition of ulong64

This one was caught only after testing on FreeBSD.
This commit is contained in:
wiire-a 2018-01-06 20:59:51 +01:00
parent d6de90fb18
commit c14f1227af

View File

@ -273,7 +273,10 @@
#if defined(FP_64BIT) #if defined(FP_64BIT)
/* for GCC only on supported platforms */ /* for GCC only on supported platforms */
#ifndef CRYPT #ifndef CRYPT
#ifndef LTC_ULONG64
#define LTC_ULONG64
typedef unsigned long long ulong64; typedef unsigned long long ulong64;
#endif
#endif /* CRYPT */ #endif /* CRYPT */
typedef ulong64 fp_digit; typedef ulong64 fp_digit;