From 12b149689e9ecef5eabf56c91c4a00f1d0742bd0 Mon Sep 17 00:00:00 2001 From: tb <> Date: Fri, 1 Nov 2024 18:34:06 +0000 Subject: Only include cryptlib.h where it's needed Clean up the other includes while there. --- src/lib/libcrypto/rsa/rsa_ameth.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'src/lib/libcrypto/rsa/rsa_ameth.c') diff --git a/src/lib/libcrypto/rsa/rsa_ameth.c b/src/lib/libcrypto/rsa/rsa_ameth.c index eb5d599bf0..a42f04d42c 100644 --- a/src/lib/libcrypto/rsa/rsa_ameth.c +++ b/src/lib/libcrypto/rsa/rsa_ameth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rsa_ameth.c,v 1.60 2024/08/29 16:58:19 tb Exp $ */ +/* $OpenBSD: rsa_ameth.c,v 1.61 2024/11/01 18:34:06 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2006. */ @@ -57,19 +57,25 @@ */ #include +#include +#include #include -#include +#include +#include #include #include #include +#include +#include +#include #include +#include #include #include "asn1_local.h" #include "bn_local.h" -#include "cryptlib.h" #include "evp_local.h" #include "rsa_local.h" #include "x509_local.h" -- cgit v1.2.3-55-g6feb