summaryrefslogtreecommitdiff
path: root/Modules/termios.c
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2009-11-01 19:24:18 +0000
committerGregory P. Smith <greg@mad-scientist.com>2009-11-01 19:24:18 +0000
commitcafc22f0b82c93f8e905bb78f0b36c6bcdbd3a60 (patch)
treee19508c355eec73b14d1c55ee2bb2d008cea760c /Modules/termios.c
parent5046788ca59788046afb1b0b502c79e2905bf528 (diff)
downloadcpython-git-cafc22f0b82c93f8e905bb78f0b36c6bcdbd3a60.tar.gz
Merged revisions 75999 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r75999 | gregory.p.smith | 2009-10-31 14:23:39 -0700 (Sat, 31 Oct 2009) | 2 lines Define TCSASOFT if the flag exists. ........
Diffstat (limited to 'Modules/termios.c')
-rw-r--r--Modules/termios.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/termios.c b/Modules/termios.c
index 9fccb2e830..efdeeaacb2 100644
--- a/Modules/termios.c
+++ b/Modules/termios.c
@@ -355,6 +355,9 @@ static struct constant {
{"TCSANOW", TCSANOW},
{"TCSADRAIN", TCSADRAIN},
{"TCSAFLUSH", TCSAFLUSH},
+#ifdef TCSASOFT
+ {"TCSASOFT", TCSASOFT},
+#endif
/* tcflush() constants */
{"TCIFLUSH", TCIFLUSH},