From 90e7ce363ae8278bb4ac647739c89a43ed341e34 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ulf=20M=C3=B6ller?= Date: Tue, 5 Dec 2000 02:00:40 +0000 Subject: [PATCH] Use assert as in the rest of the BN library. --- crypto/bn/bn_mul.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/crypto/bn/bn_mul.c b/crypto/bn/bn_mul.c index b7f8a51675..eb5d525613 100644 --- a/crypto/bn/bn_mul.c +++ b/crypto/bn/bn_mul.c @@ -56,6 +56,11 @@ * [including the GNU Public Licence.] */ +#ifndef BN_DEBUG +# undef NDEBUG /* avoid conflicting definitions */ +# define NDEBUG +#endif + #include #include #include "cryptlib.h" -- 2.34.1