Should include "Python.h", not <Python.h> -- it's not a standard

header file (yet :-).
This commit is contained in:
Guido van Rossum 1999-01-14 19:31:42 +00:00
parent 11a5071ed6
commit ca6954a979
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
/* termiosmodule.c -- POSIX terminal I/O module implementation. */ /* termiosmodule.c -- POSIX terminal I/O module implementation. */
#include <Python.h> #include "Python.h"
#define PyInit_termios inittermios #define PyInit_termios inittermios