From 7ab1a391814e588506fe37c162a7cc760a422fd6 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 20 Feb 2001 13:22:35 +0000 Subject: [PATCH] Include OpenSSL header files earlier so macros like OPENSSL_SYS_VMS get a chance to be defined. --- crypto/asn1/a_utctm.c | 4 ++-- crypto/des/read_pwd.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/asn1/a_utctm.c b/crypto/asn1/a_utctm.c index 0a5a8d2753..39b7910972 100644 --- a/crypto/asn1/a_utctm.c +++ b/crypto/asn1/a_utctm.c @@ -58,13 +58,13 @@ #include #include +#include "cryptlib.h" +#include #ifdef OPENSSL_SYS_VMS #include #include #include #endif -#include "cryptlib.h" -#include #if 0 int i2d_ASN1_UTCTIME(ASN1_UTCTIME *a, unsigned char **pp) diff --git a/crypto/des/read_pwd.c b/crypto/des/read_pwd.c index dc848f5af3..542df5bb66 100644 --- a/crypto/des/read_pwd.c +++ b/crypto/des/read_pwd.c @@ -56,8 +56,8 @@ * [including the GNU Public Licence.] */ -#if !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_VMS) && !defined(OPENSSL_SYS_WIN32) #include +#if !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_VMS) && !defined(OPENSSL_SYS_WIN32) #ifdef OPENSSL_UNISTD # include OPENSSL_UNISTD #else -- 2.34.1