From 1658ff46cce652e39cc1887d7f62d2339c9dc584 Mon Sep 17 00:00:00 2001 From: jsing Date: Sun, 18 May 2014 16:21:03 +0000 Subject: Group and sort includes. Currently "apps.h" needs to be included before any of the openssl headers and there are several cases where the code depends on headers that are included by something included by apps.h... More untangling saved for later on. --- lib/libssl/src/apps/dsa.c | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'lib/libssl/src/apps/dsa.c') diff --git a/lib/libssl/src/apps/dsa.c b/lib/libssl/src/apps/dsa.c index 81040193c73..4026ba5d229 100644 --- a/lib/libssl/src/apps/dsa.c +++ b/lib/libssl/src/apps/dsa.c @@ -56,21 +56,24 @@ * [including the GNU Public Licence.] */ -#include /* for OPENSSL_NO_DSA */ +#include /* for OPENSSL_NO_DSA */ + #ifndef OPENSSL_NO_DSA + #include #include -#include #include +#include + #include "apps.h" + #include -#include +#include #include +#include #include -#include #include -#include - +#include /* -inform arg - input format - default PEM (one of DER, NET or PEM) * -outform arg - output format - default PEM -- cgit v1.2.3-59-g8ed1b