From 7722424462001807f79213c4d57c2600450ca0df Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Mon, 28 Jun 1999 14:38:31 +0000 Subject: [PATCH] With mingw32, use "long long" rather than "_int64" (the latter does not work, at least the package mentioned in INSTALL.W32 does not know about it). --- 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 80421a24cc..cfed61293d 100644 --- a/crypto/bn/bn.h +++ b/crypto/bn/bn.h @@ -142,7 +142,7 @@ extern "C" { #endif #ifdef THIRTY_TWO_BIT -#ifdef WIN32 +#if defined WIN32 && !defined __MINGW32__ #define BN_ULLONG unsigned _int64 #else #define BN_ULLONG unsigned long long -- 2.25.1