summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2022-12-05 00:24:44 +0000
committertb <>2022-12-05 00:24:44 +0000
commitba3d3e9c51f4d5378c04c6e9065b2c070e97806d (patch)
tree18f297363560f36b74d4513a0f1931cb16bfa532
parent58332972c8ed662b36fa575355047d2de8b8f319 (diff)
downloadopenbsd-ba3d3e9c51f4d5378c04c6e9065b2c070e97806d.tar.gz
openbsd-ba3d3e9c51f4d5378c04c6e9065b2c070e97806d.tar.bz2
openbsd-ba3d3e9c51f4d5378c04c6e9065b2c070e97806d.zip
bn_mod_exp.c doesn't need <string.h>
-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>