diff options
author | Richard Levitte <levitte@openssl.org> | 2001-02-20 13:24:23 +0000 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2001-02-20 13:24:23 +0000 |
commit | 56a6ccc84f0412c471e0c37d00dc867bdbc1a51c (patch) | |
tree | cdf03663ff99b17e3d1f30612e97edd875fb41ff /crypto/ebcdic.c | |
parent | 03c4d82fa1a2fced7aa8ae2c4830722015e3f4f4 (diff) | |
download | openssl-new-56a6ccc84f0412c471e0c37d00dc867bdbc1a51c.tar.gz |
DEC C on VMS is pedantic by definition.
Diffstat (limited to 'crypto/ebcdic.c')
-rw-r--r-- | crypto/ebcdic.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/ebcdic.c b/crypto/ebcdic.c index 31397b2add..eb46054433 100644 --- a/crypto/ebcdic.c +++ b/crypto/ebcdic.c @@ -211,7 +211,8 @@ ascii2ebcdic(void *dest, const void *srce, size_t count) } #else /*CHARSET_EBCDIC*/ -#ifdef PEDANTIC +#include <openssl/opensslconf.h> +#if defined(PEDANTIC) || defined(OPENSSL_SYS_VMS) static void *dummy=&dummy; #endif #endif |