/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* sigint_handler.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/12/10 15:14:47 by jhalford #+# #+# */ /* Updated: 2017/01/08 15:12:58 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #include "minishell.h" void sigint_handler(int signo) { (void)signo; DG("got SIGINT"); }