summaryrefslogtreecommitdiffstats
path: root/crypto/aes/aes_ctr.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2002-11-13 14:01:34 +0000
committerBodo Möller <bodo@openssl.org>2002-11-13 14:01:34 +0000
commitb6fee5c2fb68918ff64cba8b7a1ff24e9d922093 (patch)
tree09b59b96931d1ca94e628bfa81890a081daec537 /crypto/aes/aes_ctr.c
parent10fa0476224ed90bcfab94d67debfc4f20e78c74 (diff)
disable weird assert()s
Diffstat (limited to 'crypto/aes/aes_ctr.c')
-rw-r--r--crypto/aes/aes_ctr.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/aes/aes_ctr.c b/crypto/aes/aes_ctr.c
index 142ca4a142..59088499a0 100644
--- a/crypto/aes/aes_ctr.c
+++ b/crypto/aes/aes_ctr.c
@@ -49,7 +49,13 @@
*
*/
+#ifndef AES_DEBUG
+# ifndef NDEBUG
+# define NDEBUG
+# endif
+#endif
#include <assert.h>
+
#include <openssl/aes.h>
#include "aes_locl.h"