diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-07-10 02:29:29 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-07-10 02:29:29 +0000 |
commit | 81f78489d0ea526b0c4b7aa5a08efac138e80ab9 (patch) | |
tree | 1840edc0d7a61af74e98413ed350269ee7836901 | |
parent | 23050f1b6b5fdbeab7c889a1919b6f4ec5e8c95d (diff) |
bn_print: string.h is no longer needed
-rw-r--r-- | lib/libcrypto/bn/bn_print.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libcrypto/bn/bn_print.c b/lib/libcrypto/bn/bn_print.c index 666bbf43322..afcb82396a5 100644 --- a/lib/libcrypto/bn/bn_print.c +++ b/lib/libcrypto/bn/bn_print.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bn_print.c,v 1.44 2023/07/09 18:37:58 tb Exp $ */ +/* $OpenBSD: bn_print.c,v 1.45 2023/07/10 02:29:28 tb Exp $ */ /* * Copyright (c) 2023 Theo Buehler <tb@openbsd.org> @@ -22,7 +22,6 @@ #include <stdio.h> #include <stdint.h> #include <stdlib.h> -#include <string.h> #include <openssl/bio.h> #include <openssl/bn.h> |