From 3fb1aea0ae86dad369f417e5aa1c6c42a22ce238 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 12 Aug 1997 15:14:22 +0000 Subject: [PATCH] Added decls for stuff from myreadline. --- Include/pythonrun.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Include/pythonrun.h b/Include/pythonrun.h index cbfd4668b94..09d3b57e8a7 100644 --- a/Include/pythonrun.h +++ b/Include/pythonrun.h @@ -99,6 +99,11 @@ void PyInt_Fini Py_PROTO((void)); void PyFloat_Fini Py_PROTO((void)); void PyOS_FiniInterrupts Py_PROTO((void)); +/* Stuff with no proper home (yet) */ +char *PyOS_Readline Py_PROTO((char *)); +extern DL_IMPORT(int) (*PyOS_InputHook) Py_PROTO((void)); +extern DL_IMPORT(char) *(*PyOS_ReadlineFunctionPointer) Py_PROTO((char *)); + #ifdef __cplusplus } #endif