19 lines
984 B
C
19 lines
984 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* sigint_handler.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* 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");
|
|
}
|