From b50e1bd3c3f0b8331b616a10bbc1fc20ea866d07 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 2 May 2000 12:35:04 +0000 Subject: [PATCH] In Message-ID: <003201bfb332$14a07520$0801a8c0@janm.transactionsite.com>, "Jan Mikkelsen" correctly states that the OpenSSL header files have #include's and extern "C"'s in an incorrect order. Thusly fixed. --- crypto/cryptlib.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crypto/cryptlib.h b/crypto/cryptlib.h index e3d38524ae..5eff5d3141 100644 --- a/crypto/cryptlib.h +++ b/crypto/cryptlib.h @@ -62,10 +62,6 @@ #include #include -#ifdef __cplusplus -extern "C" { -#endif - #include "openssl/e_os.h" #include @@ -74,6 +70,10 @@ extern "C" { #include #include +#ifdef __cplusplus +extern "C" { +#endif + #ifndef VMS #define X509_CERT_AREA OPENSSLDIR #define X509_CERT_DIR OPENSSLDIR "/certs" -- 2.25.1