From: Andy Polyakov Date: Sat, 15 Sep 2007 17:05:11 +0000 (+0000) Subject: Make bn2dec work on "SIXTY_FOUR_BIT" platforms. X-Git-Tag: OpenSSL_0_9_8k^2~707 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=77519b51dbfe8652dad58536f6fa21a089080c1d;ds=sidebyside Make bn2dec work on "SIXTY_FOUR_BIT" platforms. PR: 1456 --- diff --git a/crypto/bio/b_print.c b/crypto/bio/b_print.c index b2d6f26f2e..143a7cfefa 100644 --- a/crypto/bio/b_print.c +++ b/crypto/bio/b_print.c @@ -79,7 +79,7 @@ #include /* To get BN_LLONG properly defined */ #include -#ifdef BN_LLONG +#if defined(BN_LLONG) || defined(SIXTY_FOUR_BIT) # ifndef HAVE_LONG_LONG # define HAVE_LONG_LONG 1 # endif @@ -116,8 +116,8 @@ #endif #ifdef HAVE_LONG_LONG -# if defined(OPENSSL_SYS_WIN32) && !defined(__GNUC__) -# define LLONG _int64 +# if defined(_WIN32) && !defined(__GNUC__) +# define LLONG __int64 # else # define LLONG long long # endif