19 lines
986 B
C
19 lines
986 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* sigtstp_handler.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/12/10 15:14:53 by jhalford #+# #+# */
|
|
/* Updated: 2017/01/09 16:37:41 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "minishell.h"
|
|
|
|
void sigtstp_handler(int signo)
|
|
{
|
|
(void)signo;
|
|
DG("got SIGTSTP");
|
|
}
|