✏️」 norm: normed

This commit is contained in:
2024-07-15 14:43:03 +02:00
parent 17bb4ce14e
commit bd49fa19a1
2 changed files with 11 additions and 4 deletions

View File

@ -6,7 +6,7 @@
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/07/09 22:53:01 by adjoly #+# #+# */
/* Updated: 2024/07/09 22:57:38 by adjoly ### ########.fr */
/* Updated: 2024/07/15 14:32:40 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
@ -36,3 +36,9 @@ int send_error_exec(char *input)
free(input);
return (-1);
}
void __sig(void)
{
signal(SIGQUIT, SIG_IGN);
signal(SIGINT, SIG_IGN);
}