From f19759a1823afafe2a3d3c72e8a4bacb40232b70 Mon Sep 17 00:00:00 2001
From: Richard Levitte <levitte@openssl.org>
Date: Wed, 20 Feb 2002 12:01:24 +0000
Subject: [PATCH] Instead of just checking for OpenVMS, check if DEC C is used,
 since it's as picky on all platforms

---
 crypto/ebcdic.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/ebcdic.c b/crypto/ebcdic.c
index eb46054433..bc968ea807 100644
--- a/crypto/ebcdic.c
+++ b/crypto/ebcdic.c
@@ -212,7 +212,7 @@ ascii2ebcdic(void *dest, const void *srce, size_t count)
 
 #else /*CHARSET_EBCDIC*/
 #include <openssl/opensslconf.h>
-#if defined(PEDANTIC) || defined(OPENSSL_SYS_VMS)
+#if defined(PEDANTIC) || defined(__DECC)
 static void *dummy=&dummy;
 #endif
 #endif
-- 
2.40.0