diff options
author | Fred Drake <fdrake@acm.org> | 2001-04-04 21:19:26 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-04-04 21:19:26 (GMT) |
commit | 9b3bc49575fecd30e3f862e8864625f9c8c7a4c2 (patch) | |
tree | 21722d43ed0cc76f5633710c014f7ef80675f249 /Modules/termios.c | |
parent | 7d3bad66e4b32fa65fce219661b16d75e90c152f (diff) | |
download | cpython-9b3bc49575fecd30e3f862e8864625f9c8c7a4c2.zip cpython-9b3bc49575fecd30e3f862e8864625f9c8c7a4c2.tar.gz cpython-9b3bc49575fecd30e3f862e8864625f9c8c7a4c2.tar.bz2 |
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.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/termios.c b/Modules/termios.c index 054d259..0bce7d3 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\ |