Kaydet (Commit) 4b104abd authored tarafından Ned Deily's avatar Ned Deily

Issue #20374: merge

......@@ -815,8 +815,13 @@ on_hook(PyObject *func)
return result;
}
static int
#if defined(_RL_FUNCTION_TYPEDEF)
on_startup_hook(void)
#else
on_startup_hook()
#endif
{
int r;
#ifdef WITH_THREAD
......@@ -831,7 +836,11 @@ on_startup_hook(void)
#ifdef HAVE_RL_PRE_INPUT_HOOK
static int
#if defined(_RL_FUNCTION_TYPEDEF)
on_pre_input_hook(void)
#else
on_pre_input_hook()
#endif
{
int r;
#ifdef WITH_THREAD
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment