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

@@ -23,10 +23,10 @@ HMODULE NO_COPY hntdll;
int NO_COPY sigExeced;
WCHAR windows_system_directory[MAX_PATH];
UINT windows_system_directory_length;
#ifndef __x86_64__
#ifdef __i386__
WCHAR system_wow64_directory[MAX_PATH];
UINT system_wow64_directory_length;
#endif /* !__x86_64__ */
#endif /* __i386__ */
WCHAR global_progname[NT_MAX_PATH];
/* program exit the program */
@@ -154,7 +154,7 @@ const int __collate_load_error = 0;
/* This is an exported copy of environ which can be used by DLLs
which use cygwin.dll. */
char **__cygwin_environ;
#ifndef __x86_64__
#ifdef __i386__
char ***main_environ = &__cygwin_environ;
#endif
/* __progname used in getopt error message */
@@ -167,7 +167,7 @@ const int __collate_load_error = 0;
/* dll_major */ CYGWIN_VERSION_DLL_MAJOR,
/* dll_major */ CYGWIN_VERSION_DLL_MINOR,
/* impure_ptr_ptr */ NULL,
#ifndef __x86_64__
#ifdef __i386__
/* envptr */ NULL,
#endif
/* malloc */ malloc, /* free */ free,