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>2007-02-23 15:01:52 +0300
committerCorinna Vinschen <corinna@vinschen.de>2007-02-23 15:01:52 +0300
commitb5cb5c9e642a3b868024345fd31c71052e4b0932 (patch)
tree72af33d4f99d1eb61cdf0cbc38445de436026f8f /winsup/cygwin/winf.h
parent7131554a692a675bfff2d95f224c54dfdb88686c (diff)
* fhandler_console.cc (fhandler_console::need_invisible): Drop
pty_needs_alloc_console check. * spawn.cc (spawn_guts): Ditto. (av::fixup): Remove setting iscui. * syscalls.cc (rename): Drop has_move_file_ex checks. Remove 9x specific code. * wincap.cc: Remove has_move_file_ex and pty_needs_alloc_console throughout. * wincap.h: Ditto.
Diffstat (limited to 'winsup/cygwin/winf.h')
-rw-r--r--winsup/cygwin/winf.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/winsup/cygwin/winf.h b/winsup/cygwin/winf.h
index 16dde7063..8f965e917 100644
--- a/winsup/cygwin/winf.h
+++ b/winsup/cygwin/winf.h
@@ -1,6 +1,6 @@
/* winf.h
- Copyright 2003, 2004, 2005 Red Hat, Inc.
+ Copyright 2006, 2007 Red Hat, Inc.
This software is a copyrighted work licensed under the terms of the
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
@@ -27,9 +27,8 @@ class av
public:
int argc;
bool win16_exe;
- bool iscui;
- av (): argv (NULL), iscui (false) {}
- av (int ac_in, const char * const *av_in) : calloced (0), argc (ac_in), win16_exe (false), iscui (false)
+ av (): argv (NULL) {}
+ av (int ac_in, const char * const *av_in) : calloced (0), argc (ac_in), win16_exe (false)
{
argv = (char **) cmalloc (HEAP_1_ARGV, (argc + 5) * sizeof (char *));
memcpy (argv, av_in, (argc + 1) * sizeof (char *));