summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-06-28 14:38:31 +0000
committerBodo Möller <bodo@openssl.org>1999-06-28 14:38:31 +0000
commit7722424462001807f79213c4d57c2600450ca0df (patch)
treee17fa894d092251eb478629b84bda59dc0af7e71 /crypto
parenta14d1a03ec14952e32da7b756e1aa6b76329eb23 (diff)
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).
Diffstat (limited to 'crypto')
-rw-r--r--crypto/bn/bn.h2
1 files changed, 1 insertions, 1 deletions
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