summaryrefslogtreecommitdiffstats
path: root/crypto/ebcdic.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-07-16 10:46:09 +0000
committerRichard Levitte <levitte@openssl.org>2002-07-16 10:46:09 +0000
commitbdbbf930aacdd7b09ffc8f66650e0bbff05199eb (patch)
tree861786c0ce99d5202f4f4a31a6d2083dda3b0da5 /crypto/ebcdic.c
parent5254b53e977a2d621b24829dee52c36498713500 (diff)
The default C compiler on MacOS X doesn't like empty object files
Diffstat (limited to 'crypto/ebcdic.c')
-rw-r--r--crypto/ebcdic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/ebcdic.c b/crypto/ebcdic.c
index bc968ea807..d1bece87f7 100644
--- a/crypto/ebcdic.c
+++ b/crypto/ebcdic.c
@@ -211,8 +211,8 @@ ascii2ebcdic(void *dest, const void *srce, size_t count)
}
#else /*CHARSET_EBCDIC*/
-#include <openssl/opensslconf.h>
-#if defined(PEDANTIC) || defined(__DECC)
+#include <openssl/e_os2.h>
+#if defined(PEDANTIC) || defined(__DECC) || defined(OPENSSL_SYS_MACOSX)
static void *dummy=&dummy;
#endif
#endif