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/des | |
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/des')
-rw-r--r-- | crypto/des/des.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/des/des.h b/crypto/des/des.h index ead67986d9..cf536e6428 100644 --- a/crypto/des/des.h +++ b/crypto/des/des.h @@ -59,10 +59,6 @@ #ifndef HEADER_DES_H #define HEADER_DES_H -#ifdef __cplusplus -extern "C" { -#endif - #ifdef NO_DES #error DES is disabled. #endif @@ -75,6 +71,10 @@ extern "C" { #include <openssl/opensslconf.h> /* DES_LONG */ #include <openssl/e_os2.h> /* OPENSSL_EXTERN */ +#ifdef __cplusplus +extern "C" { +#endif + typedef unsigned char des_cblock[8]; typedef /* const */ unsigned char const_des_cblock[8]; /* With "const", gcc 2.8.1 on Solaris thinks that des_cblock * |