summaryrefslogtreecommitdiff
path: root/crypto/ebcdic.c
diff options
context:
space:
mode:
authorlevitte <levitte>2002-02-20 12:01:24 +0000
committerlevitte <levitte>2002-02-20 12:01:24 +0000
commit29062783b60d47c36c4478761679f093f1dd248f (patch)
tree756e915954b2880c64da2d5564bd616bd5bc12e8 /crypto/ebcdic.c
parentabf957e488c9738168863ec82c5237377609d2ac (diff)
downloadopenssl-29062783b60d47c36c4478761679f093f1dd248f.tar.gz
Instead of just checking for OpenVMS, check if DEC C is used, since it's as
picky on all platforms
Diffstat (limited to 'crypto/ebcdic.c')
-rw-r--r--crypto/ebcdic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ebcdic.c b/crypto/ebcdic.c
index eb4605443..bc968ea80 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