diff options
author | tb <> | 2023-07-10 02:29:28 +0000 |
---|---|---|
committer | tb <> | 2023-07-10 02:29:28 +0000 |
commit | de8024f69fad36b699d8447ecfffd3a0f6ed44f1 (patch) | |
tree | 365367b54167bac4cf6468218f9f71240f760347 /src/lib | |
parent | bd05409c6b5fc0f1d355d8a0a383f325306b0d4f (diff) | |
download | openbsd-de8024f69fad36b699d8447ecfffd3a0f6ed44f1.tar.gz openbsd-de8024f69fad36b699d8447ecfffd3a0f6ed44f1.tar.bz2 openbsd-de8024f69fad36b699d8447ecfffd3a0f6ed44f1.zip |
bn_print: string.h is no longer needed
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/bn/bn_print.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libcrypto/bn/bn_print.c b/src/lib/libcrypto/bn/bn_print.c index 666bbf4332..afcb82396a 100644 --- a/src/lib/libcrypto/bn/bn_print.c +++ b/src/lib/libcrypto/bn/bn_print.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bn_print.c,v 1.44 2023/07/09 18:37:58 tb Exp $ */ | 1 | /* $OpenBSD: bn_print.c,v 1.45 2023/07/10 02:29:28 tb Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2023 Theo Buehler <tb@openbsd.org> | 4 | * Copyright (c) 2023 Theo Buehler <tb@openbsd.org> |
@@ -22,7 +22,6 @@ | |||
22 | #include <stdio.h> | 22 | #include <stdio.h> |
23 | #include <stdint.h> | 23 | #include <stdint.h> |
24 | #include <stdlib.h> | 24 | #include <stdlib.h> |
25 | #include <string.h> | ||
26 | 25 | ||
27 | #include <openssl/bio.h> | 26 | #include <openssl/bio.h> |
28 | #include <openssl/bn.h> | 27 | #include <openssl/bn.h> |