diff options
author | Guido van Rossum <guido@python.org> | 1999-01-14 19:31:42 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-01-14 19:31:42 (GMT) |
commit | ca6954a9792af187ce11808c0c5908ee8436b346 (patch) | |
tree | fc8515c39db69a7239bf65cf1bf75f01b808216d /Modules/termios.c | |
parent | 11a5071ed60511741a03dd375f42c5294bda3e45 (diff) | |
download | cpython-ca6954a9792af187ce11808c0c5908ee8436b346.zip cpython-ca6954a9792af187ce11808c0c5908ee8436b346.tar.gz cpython-ca6954a9792af187ce11808c0c5908ee8436b346.tar.bz2 |
Should include "Python.h", not <Python.h> -- it's not a standard
header file (yet :-).
Diffstat (limited to 'Modules/termios.c')
-rw-r--r-- | Modules/termios.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/termios.c b/Modules/termios.c index f87cea7..aab6b8a 100644 --- a/Modules/termios.c +++ b/Modules/termios.c @@ -1,6 +1,6 @@ /* termiosmodule.c -- POSIX terminal I/O module implementation. */ -#include <Python.h> +#include "Python.h" #define PyInit_termios inittermios |