A subsequent patch will introduce a global 'install_sigint_handler'
function, so first rename the static one in extension.c.
/* Install a SIGINT handler. */
static void
-install_sigint_handler (const struct signal_handler *handler_state)
+install_ext_sigint_handler (const struct signal_handler *handler_state)
{
gdb_assert (handler_state->handler_saved);
{
/* Restore the previous SIGINT handler if one was saved. */
if (previous->sigint_handler.handler_saved)
- install_sigint_handler (&previous->sigint_handler);
+ install_ext_sigint_handler (&previous->sigint_handler);
/* If there's a SIGINT recorded in the cooperative extension languages,
move it to the new language, or save it in GDB's global flag if the