summaryrefslogtreecommitdiff
path: root/crypto/ebcdic.c
diff options
context:
space:
mode:
authorlevitte <levitte>2001-02-20 13:24:23 +0000
committerlevitte <levitte>2001-02-20 13:24:23 +0000
commita6b8e134620cfae758d42692deefa41436364de2 (patch)
treeaa65e8c719fe7062fd04bbadf8ad747057868872 /crypto/ebcdic.c
parent7cd60cc8b54a8e9951eccefc2877e3dc641839fe (diff)
downloadopenssl-a6b8e134620cfae758d42692deefa41436364de2.tar.gz
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 31397b2ad..eb4605443 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