From 6e1f6667e4c4f6bc69bbeeee57ecfc42bfb2ac10 Mon Sep 17 00:00:00 2001 From: tb <> Date: Tue, 18 Apr 2023 08:47:28 +0000 Subject: Bring includes into canonical order Requested by jsing --- src/lib/libcrypto/x509/x509.h | 34 +++++++++++++++------------------- 1 file changed, 15 insertions(+), 19 deletions(-) (limited to 'src/lib/libcrypto/x509') diff --git a/src/lib/libcrypto/x509/x509.h b/src/lib/libcrypto/x509/x509.h index ac14dd3868..9f87700c60 100644 --- a/src/lib/libcrypto/x509/x509.h +++ b/src/lib/libcrypto/x509/x509.h @@ -1,4 +1,4 @@ -/* $OpenBSD: x509.h,v 1.95 2023/04/18 08:33:43 tb Exp $ */ +/* $OpenBSD: x509.h,v 1.96 2023/04/18 08:47:28 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -66,44 +66,40 @@ #include +#include +#ifndef OPENSSL_NO_BIO +#include +#endif #ifndef OPENSSL_NO_BUFFER #include #endif -#ifndef OPENSSL_NO_EVP -#include +#ifndef OPENSSL_NO_DH +#include #endif -#ifndef OPENSSL_NO_BIO -#include +#ifndef OPENSSL_NO_DSA +#include #endif -#include -#include -#include - #ifndef OPENSSL_NO_EC #include #endif - #ifndef OPENSSL_NO_ECDSA #include #endif - #ifndef OPENSSL_NO_ECDH #include #endif - +#ifndef OPENSSL_NO_EVP +#include +#endif #ifndef OPENSSL_NO_RSA #include #endif -#ifndef OPENSSL_NO_DSA -#include -#endif -#ifndef OPENSSL_NO_DH -#include -#endif - #ifndef OPENSSL_NO_SHA #include #endif +#include +#include + #include #ifdef __cplusplus -- cgit v1.2.3-55-g6feb