From: Irit Katriel <1055913+iritkatriel@users.noreply.github.com> Date: Fri, 2 Jun 2023 15:11:20 +0000 (+0100) Subject: gh-105240: add missing function prototypes (#105241) X-Git-Tag: v3.13.0a1~1918 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a9305b5e80e414b8b9b2bd366e96b43add662d70;p=thirdparty%2FPython%2Fcpython.git gh-105240: add missing function prototypes (#105241) --- diff --git a/Modules/readline.c b/Modules/readline.c index 2824105a1875..ff7075c6822e 100644 --- a/Modules/readline.c +++ b/Modules/readline.c @@ -1015,7 +1015,7 @@ static int #if defined(_RL_FUNCTION_TYPEDEF) on_startup_hook(void) #else -on_startup_hook() +on_startup_hook(void) #endif { int r; @@ -1030,7 +1030,7 @@ static int #if defined(_RL_FUNCTION_TYPEDEF) on_pre_input_hook(void) #else -on_pre_input_hook() +on_pre_input_hook(void) #endif { int r;