ca fait bcp la non

This commit is contained in:
airone01
2026-01-24 16:20:53 +01:00
parent 1b48b0bb13
commit 6e652d3b24
20 changed files with 232 additions and 40 deletions

View File

@@ -0,0 +1,18 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 03_sigsegv.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: elagouch <elagouch@student.42lyon.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/01/24 15:38:17 by elagouch #+# #+# */
/* Updated: 2026/01/24 16:19:43 by elagouch ### ########.fr */
/* */
/* ************************************************************************** */
#include <signal.h>
int test_sigsegv(void) {
raise(SIGSEGV);
return (1);
}