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:
Corinna Vinschen
2017-11-27 14:36:06 +01:00
parent bc14f1c174
commit 76f06705be
27 changed files with 140 additions and 140 deletions

View File

@@ -61,7 +61,7 @@ extern int __dynamically_loaded;
extern "C"
{
#ifndef __x86_64__
#ifdef __i386__
char **environ;
#endif
int _fmode;
@@ -114,7 +114,7 @@ _cygwin_crt0_common (MainFunc f, per_process *u)
u->ctors = &__CTOR_LIST__;
u->dtors = &__DTOR_LIST__;
#ifndef __x86_64__
#ifdef __i386__
u->envptr = &environ;
#endif
if (uwasnull)