From afd43b55124e332fe0a8e495bef551ba7e49a69f Mon Sep 17 00:00:00 2001 From: "Michael W. Hudson" Date: Thu, 17 Jul 2003 16:26:58 +0000 Subject: [PATCH] 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. --- Modules/readline.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Modules/readline.c b/Modules/readline.c index a07b04a9cf8..64935c6efef 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 */