diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-12-05 00:24:45 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-12-05 00:24:45 +0000 |
commit | 18b2bff809dc543d07ef96ea2aa037474e99ceda (patch) | |
tree | 59920d32a2e8f4ee96c428c2f505e5f59f865bbc /regress | |
parent | 7119931719c16b3e14f3ca5213b351e777080528 (diff) |
bn_mod_exp.c doesn't need <string.h>
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib/libcrypto/bn/bn_mod_exp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/regress/lib/libcrypto/bn/bn_mod_exp.c b/regress/lib/libcrypto/bn/bn_mod_exp.c index bab6ad4adf7..b4c84a05c99 100644 --- a/regress/lib/libcrypto/bn/bn_mod_exp.c +++ b/regress/lib/libcrypto/bn/bn_mod_exp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bn_mod_exp.c,v 1.9 2022/12/03 09:44:52 tb Exp $ */ +/* $OpenBSD: bn_mod_exp.c,v 1.10 2022/12/05 00:24:44 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -58,7 +58,6 @@ #include <stdio.h> #include <stdlib.h> -#include <string.h> #include <openssl/bn.h> #include <openssl/err.h> |