summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-06-28 11:50:50 +0000
committerAndy Polyakov <appro@openssl.org>2005-06-28 11:50:50 +0000
commitbb0008486392d2233d97db7cc13ee948e2628059 (patch)
tree887fe07621d21b97c5789bfffa6304c6f948ddf3 /crypto
parentdb22e5faa6f973397505d34b1ad962116ac7a9a2 (diff)
Replace _int64 with __int64, which is more widely accepted among Win32
compiler vendors.
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 9f4668a51d..670584ad74 100644
--- a/crypto/bn/bn.h
+++ b/crypto/bn/bn.h
@@ -167,7 +167,7 @@ extern "C" {
#ifdef THIRTY_TWO_BIT
#ifdef BN_LLONG
# if defined(OPENSSL_SYS_WIN32) && !defined(__GNUC__)
-# define BN_ULLONG unsigned _int64
+# define BN_ULLONG unsigned __int64
# else
# define BN_ULLONG unsigned long long
# endif