42-archive/42sh/src/job_control/sigint_handler.c
2017-03-19 13:37:17 +01:00

19 lines
1,001 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* sigint_handler.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/12/10 15:14:47 by jhalford #+# #+# */
/* Updated: 2017/01/22 20:56:45 by ariard ### ########.fr */
/* */
/* ************************************************************************** */
#include "minishell.h"
void sigint_handler(int signo)
{
(void)signo;
DG("pid:%i got SIGINT", getpid());
}