/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* sigint_handler.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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()); }