summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorjsing <>2024-03-27 06:39:46 +0000
committerjsing <>2024-03-27 06:39:46 +0000
commit163d48e60acbf4981ce0573857a0bfe589561110 (patch)
tree6cefda7e3f9890d8d603d280a8d50983f8ff3d4c /src/lib
parentea0e3d9c499d48e936db83343e739d3b045a280f (diff)
downloadopenbsd-163d48e60acbf4981ce0573857a0bfe589561110.tar.gz
openbsd-163d48e60acbf4981ce0573857a0bfe589561110.tar.bz2
openbsd-163d48e60acbf4981ce0573857a0bfe589561110.zip
Remove unused NDEBUG define.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/aes/aes_core.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/lib/libcrypto/aes/aes_core.c b/src/lib/libcrypto/aes/aes_core.c
index 06e85e8d49..3df4aec3cd 100644
--- a/src/lib/libcrypto/aes/aes_core.c
+++ b/src/lib/libcrypto/aes/aes_core.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: aes_core.c,v 1.15 2024/03/27 06:38:54 jsing Exp $ */ 1/* $OpenBSD: aes_core.c,v 1.16 2024/03/27 06:39:46 jsing Exp $ */
2/** 2/**
3 * rijndael-alg-fst.c 3 * rijndael-alg-fst.c
4 * 4 *
@@ -30,12 +30,6 @@
30 * compatible API. 30 * compatible API.
31 */ 31 */
32 32
33#ifndef AES_DEBUG
34# ifndef NDEBUG
35# define NDEBUG
36# endif
37#endif
38
39#include <stdlib.h> 33#include <stdlib.h>
40 34
41#include <openssl/aes.h> 35#include <openssl/aes.h>