diff options
author | Guido van Rossum <guido@python.org> | 1997-08-12 15:14:22 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-12 15:14:22 (GMT) |
commit | 3fb1aea0ae86dad369f417e5aa1c6c42a22ce238 (patch) | |
tree | bccf643c4c702a3792456d9d7ddc9c2b190e31c2 /Include | |
parent | 7242905385ade875d4e225de9c6558d56e698a0b (diff) | |
download | cpython-3fb1aea0ae86dad369f417e5aa1c6c42a22ce238.zip cpython-3fb1aea0ae86dad369f417e5aa1c6c42a22ce238.tar.gz cpython-3fb1aea0ae86dad369f417e5aa1c6c42a22ce238.tar.bz2 |
Added decls for stuff from myreadline.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pythonrun.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Include/pythonrun.h b/Include/pythonrun.h index cbfd466..09d3b57 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 |