> +static volatile sig_atomic_t b_ctrl_c /* = 0 */;
> static void sigint_handler(int)
> {
> - if (b_exit_on_ctrl_c)
> - exit(0);
> b_ctrl_c = 1;
> }
Now I am curious which function(s) will check this variable to achieve a
corresponding reaction.
Regards,
Markus