summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_mul.c
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-12-05 02:00:40 +0000
committerUlf Möller <ulf@openssl.org>2000-12-05 02:00:40 +0000
commit90e7ce363ae8278bb4ac647739c89a43ed341e34 (patch)
tree616a80e3ec20322f76e03a87f9a3d355d06a12b0 /crypto/bn/bn_mul.c
parenta47b505e37f88ca54580d959055c13d7682a5bd3 (diff)
Use assert as in the rest of the BN library.
Diffstat (limited to 'crypto/bn/bn_mul.c')
-rw-r--r--crypto/bn/bn_mul.c5
1 files changed, 5 insertions, 0 deletions
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 <stdio.h>
#include <assert.h>
#include "cryptlib.h"