summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2022-12-05 00:24:44 +0000
committertb <>2022-12-05 00:24:44 +0000
commita06d9e759c01ab233cfa26fab602368c28f16321 (patch)
tree18f297363560f36b74d4513a0f1931cb16bfa532 /src
parentee7dcd00e7c381d09c3ee449f185856121676f04 (diff)
downloadopenbsd-a06d9e759c01ab233cfa26fab602368c28f16321.tar.gz
openbsd-a06d9e759c01ab233cfa26fab602368c28f16321.tar.bz2
openbsd-a06d9e759c01ab233cfa26fab602368c28f16321.zip
bn_mod_exp.c doesn't need <string.h>
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/bn/bn_mod_exp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/bn/bn_mod_exp.c b/src/regress/lib/libcrypto/bn/bn_mod_exp.c
index bab6ad4adf..b4c84a05c9 100644
--- a/src/regress/lib/libcrypto/bn/bn_mod_exp.c
+++ b/src/regress/lib/libcrypto/bn/bn_mod_exp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn_mod_exp.c,v 1.9 2022/12/03 09:44:52 tb Exp $ */ 1/* $OpenBSD: bn_mod_exp.c,v 1.10 2022/12/05 00:24:44 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -58,7 +58,6 @@
58 58
59#include <stdio.h> 59#include <stdio.h>
60#include <stdlib.h> 60#include <stdlib.h>
61#include <string.h>
62 61
63#include <openssl/bn.h> 62#include <openssl/bn.h>
64#include <openssl/err.h> 63#include <openssl/err.h>