From: Richard Levitte Date: Mon, 2 Apr 2001 09:10:59 +0000 (+0000) Subject: Compaq C on OpenVMS is a little picky around producing empty object X-Git-Tag: OpenSSL_0_9_6a~15 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=88f59f615246dfacc97d51c4a66a949f683a2d68;p=oweals%2Fopenssl.git Compaq C on OpenVMS is a little picky around producing empty object files... --- diff --git a/crypto/ebcdic.c b/crypto/ebcdic.c index 31397b2add..91a7a8bcb4 100644 --- a/crypto/ebcdic.c +++ b/crypto/ebcdic.c @@ -211,7 +211,7 @@ ascii2ebcdic(void *dest, const void *srce, size_t count) } #else /*CHARSET_EBCDIC*/ -#ifdef PEDANTIC +#if defined(PEDANTIC) || defined(VMS) || defined(__VMS) static void *dummy=&dummy; #endif #endif