summaryrefslogtreecommitdiff
path: root/Modules/termios.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-01-14 19:31:42 +0000
committerGuido van Rossum <guido@python.org>1999-01-14 19:31:42 +0000
commitca6954a9792af187ce11808c0c5908ee8436b346 (patch)
treefc8515c39db69a7239bf65cf1bf75f01b808216d /Modules/termios.c
parent11a5071ed60511741a03dd375f42c5294bda3e45 (diff)
downloadcpython-git-ca6954a9792af187ce11808c0c5908ee8436b346.tar.gz
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/termios.c b/Modules/termios.c
index f87cea7301..aab6b8a71c 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