summaryrefslogtreecommitdiff
path: root/Modules/termios.c
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-04-04 21:19:26 +0000
committerFred Drake <fdrake@acm.org>2001-04-04 21:19:26 +0000
commit9b3bc49575fecd30e3f862e8864625f9c8c7a4c2 (patch)
tree21722d43ed0cc76f5633710c014f7ef80675f249 /Modules/termios.c
parent7d3bad66e4b32fa65fce219661b16d75e90c152f (diff)
downloadcpython-git-9b3bc49575fecd30e3f862e8864625f9c8c7a4c2.tar.gz
Add an #include of sys/ioctl.h to pick up a lot of the constants supported
in the previous patch. This closes (again!) SF patch #410267.
Diffstat (limited to 'Modules/termios.c')
-rw-r--r--Modules/termios.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/termios.c b/Modules/termios.c
index 054d259937..0bce7d3fd0 100644
--- a/Modules/termios.c
+++ b/Modules/termios.c
@@ -5,6 +5,7 @@
#define PyInit_termios inittermios
#include <termios.h>
+#include <sys/ioctl.h>
static char termios__doc__[] = "\
This module provides an interface to the Posix calls for tty I/O control.\n\