diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2014-10-18 17:08:33 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2014-10-18 17:08:33 +0000 |
commit | fd7e70c64918ffd249e0f26a1c74da8f92813377 (patch) | |
tree | da77abef473a135bdc1aea17893773957c97ae34 /lib/libssl | |
parent | 8c14fbc218e1c7aecf034bdd88d9c142b0b6e60f (diff) |
Sort/group includes.
Diffstat (limited to 'lib/libssl')
-rw-r--r-- | lib/libssl/src/crypto/err/err_all.c | 51 |
1 files changed, 26 insertions, 25 deletions
diff --git a/lib/libssl/src/crypto/err/err_all.c b/lib/libssl/src/crypto/err/err_all.c index 64598d6cf4b..73622208242 100644 --- a/lib/libssl/src/crypto/err/err_all.c +++ b/lib/libssl/src/crypto/err/err_all.c @@ -1,4 +1,4 @@ -/* $OpenBSD: err_all.c,v 1.17 2014/07/11 08:00:25 jsing Exp $ */ +/* $OpenBSD: err_all.c,v 1.18 2014/10/18 17:08:32 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -61,48 +61,49 @@ #include <openssl/opensslconf.h> #include <openssl/asn1.h> +#include <openssl/bio.h> #include <openssl/bn.h> -#ifndef OPENSSL_NO_EC -#include <openssl/ec.h> -#endif #include <openssl/buffer.h> -#include <openssl/bio.h> +#include <openssl/conf.h> +#include <openssl/dso.h> +#include <openssl/err.h> +#include <openssl/evp.h> +#include <openssl/objects.h> +#include <openssl/ocsp.h> +#include <openssl/pem2.h> +#include <openssl/pkcs12.h> +#include <openssl/rand.h> +#include <openssl/ts.h> +#include <openssl/ui.h> +#include <openssl/x509.h> +#include <openssl/x509v3.h> + +#ifndef OPENSSL_NO_CMS +#include <openssl/cms.h> +#endif #ifndef OPENSSL_NO_COMP #include <openssl/comp.h> #endif -#ifndef OPENSSL_NO_RSA -#include <openssl/rsa.h> -#endif #ifndef OPENSSL_NO_DH #include <openssl/dh.h> #endif #ifndef OPENSSL_NO_DSA #include <openssl/dsa.h> #endif -#ifndef OPENSSL_NO_ECDSA -#include <openssl/ecdsa.h> +#ifndef OPENSSL_NO_EC +#include <openssl/ec.h> #endif #ifndef OPENSSL_NO_ECDH #include <openssl/ecdh.h> #endif -#include <openssl/evp.h> -#include <openssl/objects.h> -#include <openssl/pem2.h> -#include <openssl/x509.h> -#include <openssl/x509v3.h> -#include <openssl/conf.h> -#include <openssl/pkcs12.h> -#include <openssl/rand.h> -#include <openssl/dso.h> +#ifndef OPENSSL_NO_ECDSA +#include <openssl/ecdsa.h> +#endif #ifndef OPENSSL_NO_ENGINE #include <openssl/engine.h> #endif -#include <openssl/ui.h> -#include <openssl/ocsp.h> -#include <openssl/err.h> -#include <openssl/ts.h> -#ifndef OPENSSL_NO_CMS -#include <openssl/cms.h> +#ifndef OPENSSL_NO_RSA +#include <openssl/rsa.h> #endif void |