diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2024-03-27 06:39:47 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2024-03-27 06:39:47 +0000 |
commit | 00ccdc981351e11eafb99da0fd5c97b813c4e275 (patch) | |
tree | fee1fc3e0368251d24706843046ae127f3db6298 | |
parent | ed75dc2a2f22e2e184614d98270de03d0b2f5bce (diff) |
Remove unused NDEBUG define.
-rw-r--r-- | lib/libcrypto/aes/aes_core.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/libcrypto/aes/aes_core.c b/lib/libcrypto/aes/aes_core.c index 06e85e8d496..3df4aec3cd2 100644 --- a/lib/libcrypto/aes/aes_core.c +++ b/lib/libcrypto/aes/aes_core.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aes_core.c,v 1.15 2024/03/27 06:38:54 jsing Exp $ */ +/* $OpenBSD: aes_core.c,v 1.16 2024/03/27 06:39:46 jsing Exp $ */ /** * rijndael-alg-fst.c * @@ -30,12 +30,6 @@ * compatible API. */ -#ifndef AES_DEBUG -# ifndef NDEBUG -# define NDEBUG -# endif -#endif - #include <stdlib.h> #include <openssl/aes.h> |