diff options
author | Michael W. Hudson <mwh@python.net> | 2003-07-17 16:26:58 (GMT) |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2003-07-17 16:26:58 (GMT) |
commit | afd43b55124e332fe0a8e495bef551ba7e49a69f (patch) | |
tree | 7769560af5a9674fab6234e80e65433dc2a0d963 /Modules | |
parent | 7a6b4f0284ba363ddd3ded308449b6d2d838a3d2 (diff) | |
download | cpython-afd43b55124e332fe0a8e495bef551ba7e49a69f.zip cpython-afd43b55124e332fe0a8e495bef551ba7e49a69f.tar.gz cpython-afd43b55124e332fe0a8e495bef551ba7e49a69f.tar.bz2 |
Remove inaccurate (and it turns out, entirely superfluous) declarations of
PyOS_InputHook and PyOS_ReadlineFunctionPointer).
The inaccuracies were causing problems in framework builds on Mac OS X.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/readline.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Modules/readline.c b/Modules/readline.c index a07b04a..64935c6 100644 --- a/Modules/readline.c +++ b/Modules/readline.c @@ -31,10 +31,6 @@ rl_completion_matches((x), ((rl_compentry_func_t *)(y))) #endif -/* Pointers needed from outside (but not declared in a header file). */ -PyAPI_FUNC(int) (*PyOS_InputHook)(void); -PyAPI_FUNC(char) *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *,char *); - /* Exported function to send one line to readline's init file parser */ |