Oops, this file already had the "empty source file" workaround but it
requires -DPEDANTIC and was hidden at the bottom of the file. This moves it to the top and removes the redundant declaration.
This commit is contained in:
parent
8087d8f7ea
commit
06e4024d98
1 changed files with 8 additions and 7 deletions
|
@ -1,8 +1,14 @@
|
|||
/* crypto/ebcdic.c */
|
||||
|
||||
static void *dummy=&dummy;
|
||||
#ifndef CHARSET_EBCDIC
|
||||
|
||||
#include <openssl/e_os2.h>
|
||||
#if defined(PEDANTIC) || defined(__DECC) || defined(OPENSSL_SYS_MACOSX)
|
||||
static void *dummy=&dummy;
|
||||
#endif
|
||||
|
||||
#else /*CHARSET_EBCDIC*/
|
||||
|
||||
#ifdef CHARSET_EBCDIC
|
||||
#include "ebcdic.h"
|
||||
/* Initial Port for Apache-1.3 by <Martin.Kraemer@Mch.SNI.De>
|
||||
* Adapted for OpenSSL-0.9.4 by <Martin.Kraemer@Mch.SNI.De>
|
||||
|
@ -212,9 +218,4 @@ ascii2ebcdic(void *dest, const void *srce, size_t count)
|
|||
return dest;
|
||||
}
|
||||
|
||||
#else /*CHARSET_EBCDIC*/
|
||||
#include <openssl/e_os2.h>
|
||||
#if defined(PEDANTIC) || defined(__DECC) || defined(OPENSSL_SYS_MACOSX)
|
||||
static void *dummy=&dummy;
|
||||
#endif
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue