cygwin: convert most #ifndef __x86_64__ to #ifdef __i386__
Address the real offender Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
@@ -8,7 +8,7 @@ details. */
|
||||
|
||||
struct per_module
|
||||
{
|
||||
#ifndef __x86_64__
|
||||
#ifdef __i386__
|
||||
char ***envptr;
|
||||
#endif
|
||||
void (**ctors)(void);
|
||||
@@ -20,7 +20,7 @@ struct per_module
|
||||
int (*main)(int, char **, char **);
|
||||
per_module &operator = (per_process *p)
|
||||
{
|
||||
#ifndef __x86_64__
|
||||
#ifdef __i386__
|
||||
envptr = p->envptr;
|
||||
#endif
|
||||
ctors = p->ctors;
|
||||
|
Reference in New Issue
Block a user