From 1c0efc8280713824e8dcbf6ffff13ab3e175a292 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Mon, 21 Apr 2025 15:54:32 +0000 Subject: Tidy includes. --- src/lib/libcrypto/modes/cbc128.c | 6 ++++-- src/lib/libcrypto/modes/ccm128.c | 6 ++++-- src/lib/libcrypto/modes/cfb128.c | 6 ++++-- src/lib/libcrypto/modes/ctr128.c | 6 ++++-- src/lib/libcrypto/modes/ofb128.c | 6 ++++-- src/lib/libcrypto/modes/xts128.c | 9 +++++---- 6 files changed, 25 insertions(+), 14 deletions(-) (limited to 'src') diff --git a/src/lib/libcrypto/modes/cbc128.c b/src/lib/libcrypto/modes/cbc128.c index f8ebf79a87..a1f17d7ca4 100644 --- a/src/lib/libcrypto/modes/cbc128.c +++ b/src/lib/libcrypto/modes/cbc128.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cbc128.c,v 1.8 2023/07/08 14:56:54 beck Exp $ */ +/* $OpenBSD: cbc128.c,v 1.9 2025/04/21 15:54:32 jsing Exp $ */ /* ==================================================================== * Copyright (c) 2008 The OpenSSL Project. All rights reserved. * @@ -49,9 +49,11 @@ * */ +#include + #include + #include "modes_local.h" -#include #ifndef MODES_DEBUG # ifndef NDEBUG diff --git a/src/lib/libcrypto/modes/ccm128.c b/src/lib/libcrypto/modes/ccm128.c index 68c5cce5da..8ea0cba77e 100644 --- a/src/lib/libcrypto/modes/ccm128.c +++ b/src/lib/libcrypto/modes/ccm128.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ccm128.c,v 1.8 2023/07/08 14:56:54 beck Exp $ */ +/* $OpenBSD: ccm128.c,v 1.9 2025/04/21 15:54:32 jsing Exp $ */ /* ==================================================================== * Copyright (c) 2011 The OpenSSL Project. All rights reserved. * @@ -48,9 +48,11 @@ * ==================================================================== */ +#include + #include + #include "modes_local.h" -#include #ifndef MODES_DEBUG # ifndef NDEBUG diff --git a/src/lib/libcrypto/modes/cfb128.c b/src/lib/libcrypto/modes/cfb128.c index 931353a620..e6bacee890 100644 --- a/src/lib/libcrypto/modes/cfb128.c +++ b/src/lib/libcrypto/modes/cfb128.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cfb128.c,v 1.7 2023/07/08 14:56:54 beck Exp $ */ +/* $OpenBSD: cfb128.c,v 1.8 2025/04/21 15:54:32 jsing Exp $ */ /* ==================================================================== * Copyright (c) 2008 The OpenSSL Project. All rights reserved. * @@ -49,9 +49,11 @@ * */ +#include + #include + #include "modes_local.h" -#include #ifndef MODES_DEBUG # ifndef NDEBUG diff --git a/src/lib/libcrypto/modes/ctr128.c b/src/lib/libcrypto/modes/ctr128.c index 6d507dfc3a..0eff5b7296 100644 --- a/src/lib/libcrypto/modes/ctr128.c +++ b/src/lib/libcrypto/modes/ctr128.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ctr128.c,v 1.11 2023/07/08 14:56:54 beck Exp $ */ +/* $OpenBSD: ctr128.c,v 1.12 2025/04/21 15:54:32 jsing Exp $ */ /* ==================================================================== * Copyright (c) 2008 The OpenSSL Project. All rights reserved. * @@ -49,9 +49,11 @@ * */ +#include + #include + #include "modes_local.h" -#include #ifndef MODES_DEBUG # ifndef NDEBUG diff --git a/src/lib/libcrypto/modes/ofb128.c b/src/lib/libcrypto/modes/ofb128.c index 42afd29d58..d8b3b6b8f4 100644 --- a/src/lib/libcrypto/modes/ofb128.c +++ b/src/lib/libcrypto/modes/ofb128.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ofb128.c,v 1.7 2023/07/08 14:56:54 beck Exp $ */ +/* $OpenBSD: ofb128.c,v 1.8 2025/04/21 15:54:32 jsing Exp $ */ /* ==================================================================== * Copyright (c) 2008 The OpenSSL Project. All rights reserved. * @@ -49,9 +49,11 @@ * */ +#include + #include + #include "modes_local.h" -#include #ifndef MODES_DEBUG # ifndef NDEBUG diff --git a/src/lib/libcrypto/modes/xts128.c b/src/lib/libcrypto/modes/xts128.c index 7516acf850..eb635ef088 100644 --- a/src/lib/libcrypto/modes/xts128.c +++ b/src/lib/libcrypto/modes/xts128.c @@ -1,4 +1,4 @@ -/* $OpenBSD: xts128.c,v 1.12 2023/07/08 14:56:54 beck Exp $ */ +/* $OpenBSD: xts128.c,v 1.13 2025/04/21 15:54:32 jsing Exp $ */ /* ==================================================================== * Copyright (c) 2011 The OpenSSL Project. All rights reserved. * @@ -48,12 +48,13 @@ * ==================================================================== */ -#include -#include "modes_local.h" - #include #include +#include + +#include "modes_local.h" + #ifndef MODES_DEBUG # ifndef NDEBUG # define NDEBUG -- cgit v1.2.3-55-g6feb