From 0c6238561e96c0c17ce910913a98536a5aad6f66 Mon Sep 17 00:00:00 2001 From: Lukas Jiriste Date: Thu, 29 Aug 2024 10:06:53 +0200 Subject: [PATCH] Change Makefile to permit usage of sigaction The C99 standard does not include the sigaction function and structure as they are (probably) GNU extensions. Using the GNU99 version instead permits the extension usage. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b100a97..d9ab6f9 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC := gcc -CFLAGS = -std=c99 -Wall -Wextra -Werror -Wpedantic +CFLAGS = -std=gnu99 -Wall -Wextra -Werror -Wpedantic ifneq ("$(wildcard .debug)","") CFLAGS += -g -- 2.30.2