Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/path.cc')
-rw-r--r--winsup/cygwin/path.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc
index 475c99599..cf6422341 100644
--- a/winsup/cygwin/path.cc
+++ b/winsup/cygwin/path.cc
@@ -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,