]> granicus.if.org Git - python/commitdiff
Should include "Python.h", not <Python.h> -- it's not a standard
authorGuido van Rossum <guido@python.org>
Thu, 14 Jan 1999 19:31:42 +0000 (19:31 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 14 Jan 1999 19:31:42 +0000 (19:31 +0000)
header file (yet :-).

Modules/termios.c

index f87cea73017b8a2ed86aee921ccca7702d0a7619..aab6b8a71c4e1020ef6512f1880c761e45acac34 100644 (file)
@@ -1,6 +1,6 @@
 /* termiosmodule.c -- POSIX terminal I/O module implementation.  */
 
-#include <Python.h>
+#include "Python.h"
 
 #define PyInit_termios inittermios