bn_nist.c: make new optimized code dependent on BN_LLONG [from HEAD].

This commit is contained in:
Andy Polyakov 2012-02-02 07:46:19 +00:00
parent ddc899bada
commit d06f047b04

View File

@ -341,7 +341,7 @@ static void nist_cp_bn(BN_ULONG *buf, BN_ULONG *a, int top)
#define bn_32_set_0(to, n) (to)[n] = (BN_ULONG)0;
# if defined(_WIN32) && !defined(__GNUC__)
# define NIST_INT64 __int64
# else
# elif defined(BN_LLONG)
# define NIST_INT64 long long
# endif
#endif /* BN_BITS2 != 64 */