From a2833576f39bad6e206b40a69c1a4418d52d7b8b Mon Sep 17 00:00:00 2001 From: jsing Date: Sun, 28 May 2023 13:57:27 +0000 Subject: [PATCH] Clean up includes. --- lib/libcrypto/sha/sha256.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/lib/libcrypto/sha/sha256.c b/lib/libcrypto/sha/sha256.c index 8ee23f34743..62e7a397f65 100644 --- a/lib/libcrypto/sha/sha256.c +++ b/lib/libcrypto/sha/sha256.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sha256.c,v 1.18 2023/05/28 13:55:55 jsing Exp $ */ +/* $OpenBSD: sha256.c,v 1.19 2023/05/28 13:57:27 jsing Exp $ */ /* ==================================================================== * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. * @@ -52,17 +52,16 @@ * Hudson (tjh@cryptsoft.com). */ -#include - -#if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA256) - #include #include #include +#include + #include #include -#include + +#if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA256) int SHA224_Init(SHA256_CTX *c) -- 2.20.1