summaryrefslogtreecommitdiffstats
path: root/crypto/ebcdic.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-02-20 13:24:23 +0000
committerRichard Levitte <levitte@openssl.org>2001-02-20 13:24:23 +0000
commit56a6ccc84f0412c471e0c37d00dc867bdbc1a51c (patch)
treecdf03663ff99b17e3d1f30612e97edd875fb41ff /crypto/ebcdic.c
parent03c4d82fa1a2fced7aa8ae2c4830722015e3f4f4 (diff)
DEC C on VMS is pedantic by definition.
Diffstat (limited to 'crypto/ebcdic.c')
-rw-r--r--crypto/ebcdic.c3
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