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

@@ -3551,7 +3551,7 @@ cygwin_create_path (cygwin_conv_path_t what, const void *from)
return to;
}
#ifndef __x86_64__ /* Disable deprecated functions on x86_64. */
#ifdef __i386__
extern "C" int
cygwin_conv_to_win32_path (const char *path, char *win32_path)
@@ -3583,7 +3583,7 @@ cygwin_conv_to_full_posix_path (const char *path, char *posix_path)
MAX_PATH);
}
#endif /* !__x86_64__ */
#endif /* __i386__ */
/* The realpath function is required by POSIX:2008. */
@@ -3733,7 +3733,7 @@ env_PATH_to_posix (const void *win32, void *posix, size_t size)
size, ENV_CVT));
}
#ifndef __x86_64__ /* Disable deprecated functions on x86_64. */
#ifdef __i386__
extern "C" int
cygwin_win32_to_posix_path_list_buf_size (const char *path_list)
@@ -3761,7 +3761,7 @@ cygwin_posix_to_win32_path_list (const char *posix, char *win32)
CCP_POSIX_TO_WIN_A | CCP_RELATIVE));
}
#endif /* !__x86_64__ */
#endif /* __i386__ */
extern "C" ssize_t
cygwin_conv_path_list (cygwin_conv_path_t what, const void *from, void *to,