From b30504c61cfb0582545451f12f3392a9d943e3d4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Fri, 9 Nov 2001 13:03:12 +0000 Subject: [PATCH] fix warning --- crypto/bn/bn.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crypto/bn/bn.h b/crypto/bn/bn.h index 6213142e02..c423b65122 100644 --- a/crypto/bn/bn.h +++ b/crypto/bn/bn.h @@ -90,7 +90,9 @@ extern "C" { * be on. Again this in only really a problem on machines * using "long long's", are 32bit, and are not using my assembler code. */ #if defined(MSDOS) || defined(WINDOWS) || defined(WIN32) || defined(linux) -#define BN_DIV2W +# ifndef BN_DIV2W +# define BN_DIV2W +# endif #endif /* assuming long is 64bit - this is the DEC Alpha -- 2.25.1