From: Guido van Rossum Date: Thu, 14 Jan 1999 19:31:42 +0000 (+0000) Subject: Should include "Python.h", not -- it's not a standard X-Git-Tag: v1.5.2b2~341 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ca6954a9792af187ce11808c0c5908ee8436b346;p=thirdparty%2FPython%2Fcpython.git Should include "Python.h", not -- it's not a standard header file (yet :-). --- diff --git a/Modules/termios.c b/Modules/termios.c index f87cea73017b..aab6b8a71c4e 100644 --- a/Modules/termios.c +++ b/Modules/termios.c @@ -1,6 +1,6 @@ /* termiosmodule.c -- POSIX terminal I/O module implementation. */ -#include +#include "Python.h" #define PyInit_termios inittermios