DEFUN ("internal-default-interrupt-process",
Finternal_default_interrupt_process,
Sinternal_default_interrupt_process, 0, 2, 0,
doc: /* Default function to interrupt process PROCESS.
It shall be the last element in list `interrupt-process-functions'.
See function `interrupt-process' for more details on usage. */)
(Lisp_Object process, Lisp_Object current_group)
{
process_send_signal (process, SIGINT, current_group, 0);
return process;
}