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:
authorCorinna Vinschen <corinna@vinschen.de>2008-07-18 12:16:40 +0400
committerCorinna Vinschen <corinna@vinschen.de>2008-07-18 12:16:40 +0400
commitfd8e5366aa3c50b1049b9370984d04b46f950d20 (patch)
tree113baa50e9b997ed37be992da287e655d4bc692d /winsup/cygwin/path.h
parentd2af9effc5b998a46c5819a269807976465a00b4 (diff)
* environ.cc (known): Remove "binmode" option.
* fhandler.cc (binmode): Remove. (fhandler_base::set_flags): Accommodate binmode removal. * path.h (path_conv::set_binary): Remove. * pipe.cc (pipe): Create pipes always as binary pipes. * winsup.h (binmode): Remove declaration.
Diffstat (limited to 'winsup/cygwin/path.h')
-rw-r--r--winsup/cygwin/path.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/winsup/cygwin/path.h b/winsup/cygwin/path.h
index a567e1e07..32c46a537 100644
--- a/winsup/cygwin/path.h
+++ b/winsup/cygwin/path.h
@@ -193,7 +193,6 @@ class path_conv
return dont_know_if_executable;
}
- void set_binary () {path_flags |= PATH_BINARY;}
void set_symlink (DWORD n) {path_flags |= PATH_SYMLINK; symlink_length = n;}
void set_has_symlinks () {path_flags |= PATH_HAS_SYMLINKS;}
void set_exec (int x = 1) {path_flags |= x ? PATH_EXEC : PATH_NOTEXEC;}