From 8171f0126f135f7e3148eee233f66be96b57fb74 Mon Sep 17 00:00:00 2001 From: tb Date: Tue, 9 Jul 2024 16:31:40 +0000 Subject: [PATCH] Tidy up includes --- lib/libcrypto/kdf/tls1_prf.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/lib/libcrypto/kdf/tls1_prf.c b/lib/libcrypto/kdf/tls1_prf.c index c0751b9721e..a015476c34b 100644 --- a/lib/libcrypto/kdf/tls1_prf.c +++ b/lib/libcrypto/kdf/tls1_prf.c @@ -7,11 +7,15 @@ * https://www.openssl.org/source/license.html */ +#include #include -#include "internal/cryptlib.h" -#include +#include + +#include #include -#include "crypto/evp.h" +#include + +#include "evp_local.h" static int tls1_prf_alg(const EVP_MD *md, const unsigned char *sec, size_t slen, -- 2.20.1