diff options
author | Richard Levitte <levitte@openssl.org> | 2000-05-02 14:16:01 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2000-05-02 14:16:01 +0200 |
commit | 82271cee5b6369c263213845f8a81be40d5d5585 (patch) | |
tree | 43a5b74770b864de29034a7954b98703b103b920 /crypto/mdc2 | |
parent | Add missing #include. (diff) | |
download | openssl-82271cee5b6369c263213845f8a81be40d5d5585.tar.xz openssl-82271cee5b6369c263213845f8a81be40d5d5585.zip |
In Message-ID: <003201bfb332$14a07520$0801a8c0@janm.transactionsite.com>,
"Jan Mikkelsen" <janm@transactionsite.com> correctly states that the
OpenSSL header files have #include's and extern "C"'s in an incorrect
order. Thusly fixed.
Diffstat (limited to 'crypto/mdc2')
-rw-r--r-- | crypto/mdc2/mdc2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/mdc2/mdc2.h b/crypto/mdc2/mdc2.h index 00acd707cd..5da8da72f5 100644 --- a/crypto/mdc2/mdc2.h +++ b/crypto/mdc2/mdc2.h @@ -59,12 +59,12 @@ #ifndef HEADER_MDC2_H #define HEADER_MDC2_H +#include <openssl/des.h> + #ifdef __cplusplus extern "C" { #endif -#include <openssl/des.h> - #ifdef NO_MDC2 #error MDC2 is disabled. #endif |