* various modules: #include "Python.h" and remove most remporary

renaming hacks
This commit is contained in:
Guido van Rossum 1994-09-14 13:32:22 +00:00
parent a96720907a
commit 602099a756
6 changed files with 19 additions and 66 deletions

View file

@ -1,24 +1,9 @@
/* termiosmodule.c -- POSIX terminal I/O module implementation. */
#if 0
#include <Py/Python.h>
#else
#include "allobjects.h"
#include "pythonrun.h"
#include "intrcheck.h"
#include "modsupport.h"
#include "sysmodule.h"
#ifndef PyObject
#define PyObject object
typedef struct methodlist PyMethodDef;
#endif
#include <Python.h>
#define PyInit_termios inittermios
#endif /* 0 */
#include <termios.h>
#define BAD "bad termios argument"