update: still smth to fix

This commit is contained in:
Maieul BOYER 2024-10-13 18:01:30 +02:00
parent d97efa87a7
commit 7e16ea3fe0
No known key found for this signature in database
4 changed files with 16 additions and 12 deletions

View file

@ -6,7 +6,7 @@
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/02 13:22:14 by maiboyer #+# #+# */
/* Updated: 2024/10/12 17:52:02 by rparodi ### ########.fr */
/* Updated: 2024/10/13 17:56:04 by maiboyer ### ########.fr */
/* */
/* ************************************************************************** */
@ -16,9 +16,9 @@
t_error install_signal(void)
{
if (signal(SIGINT, SIG_IGN))
return (ERROR);
if (signal(SIGQUIT, SIG_IGN))
return (ERROR);
//if (signal(SIGINT, SIG_IGN))
// return (ERROR);
//if (signal(SIGQUIT, SIG_IGN))
// return (ERROR);
return (NO_ERROR);
}