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