diff options
author | Pauli <paul.dale@oracle.com> | 2017-08-24 01:05:07 +0200 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2017-08-29 23:20:44 +0200 |
commit | 07016a8a3174db5caf07182930533cf88ad9b0ad (patch) | |
tree | 42dcb67fa6c72635b76590f8ab698bb4c692d838 /crypto/conf/conf_lib.c | |
parent | Remove the X_OK define, it is unused. (diff) | |
download | openssl-07016a8a3174db5caf07182930533cf88ad9b0ad.tar.xz openssl-07016a8a3174db5caf07182930533cf88ad9b0ad.zip |
Move e_os.h to be the very first include.
cryptilib.h is the second.
Reviewed-by: Andy Polyakov <appro@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4188)
Diffstat (limited to 'crypto/conf/conf_lib.c')
-rw-r--r-- | crypto/conf/conf_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/conf/conf_lib.c b/crypto/conf/conf_lib.c index 74759c56d5..06bb3f7ff1 100644 --- a/crypto/conf/conf_lib.c +++ b/crypto/conf/conf_lib.c @@ -7,6 +7,7 @@ * https://www.openssl.org/source/license.html */ +#include "e_os.h" #include <stdio.h> #include <string.h> #include "internal/conf.h" @@ -15,7 +16,6 @@ #include <openssl/conf.h> #include <openssl/conf_api.h> #include <openssl/lhash.h> -#include "e_os.h" static CONF_METHOD *default_CONF_method = NULL; |