Files
42-LibUnit/tests/libunit/08_sigpipe.c
Erwann Lagouche 677028dcbb Prettier output and some fixes (#4)
* feat: tab results

* feat: more colors

* style: norm

* fix: patch a spacing bug

* fix: patch a small issue

* fix: patch some leaks

* style: norm
2026-01-25 18:20:20 +01:00

20 lines
970 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 08_sigpipe.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: elagouch <elagouch@student.42lyon.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/01/24 15:38:17 by elagouch #+# #+# */
/* Updated: 2026/01/25 16:39:33 by elagouch ### ########.fr */
/* */
/* ************************************************************************** */
#include <signal.h>
int test_sigpipe(void)
{
raise(SIGPIPE);
return (1);
}