From e3718280673211d334244377ec898a208dd9a3aa Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ulf=20M=C3=B6ller?= Date: Mon, 28 Jun 1999 16:17:38 +0000 Subject: [PATCH] Use "long long" for all Win32 gcc ports. --- crypto/bn/bn.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/bn/bn.h b/crypto/bn/bn.h index cfed61293d..f935e1ca79 100644 --- a/crypto/bn/bn.h +++ b/crypto/bn/bn.h @@ -142,7 +142,7 @@ extern "C" { #endif #ifdef THIRTY_TWO_BIT -#if defined WIN32 && !defined __MINGW32__ +#if defined(WIN32) && !defined(__GNUC__) #define BN_ULLONG unsigned _int64 #else #define BN_ULLONG unsigned long long -- 2.25.1