Replace _int64 with __int64, which is more widely accepted among Win32

compiler vendors.
This commit is contained in:
Andy Polyakov 2005-06-28 11:50:50 +00:00
parent db22e5faa6
commit bb00084863

View file

@ -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