summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/include/sys/termios.h
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/include/sys/termios.h')
-rw-r--r--winsup/cygwin/include/sys/termios.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/winsup/cygwin/include/sys/termios.h b/winsup/cygwin/include/sys/termios.h
index e2fd1321a..057146966 100644
--- a/winsup/cygwin/include/sys/termios.h
+++ b/winsup/cygwin/include/sys/termios.h
@@ -1,6 +1,7 @@
/* sys/termios.h
- Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2006 Red Hat, Inc.
+ Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2006,
+ 2007 Red Hat, Inc.
This file is part of Cygwin.
@@ -233,10 +234,6 @@ POSIX commands */
#define NCCS 18
-/* `c_cc' member of 'struct termios' structure can be disabled by
- using the value _POSIX_VDISABLE. */
-#define _POSIX_VDISABLE '\0'
-
/* Compare a character C to a value VAL from the `c_cc' array in a
`struct termios'. If VAL is _POSIX_VDISABLE, no character can match it. */
#define CCEQ(val, c) ((c) == (val) && (val) != _POSIX_VDISABLE)