From c4314b35efe14fd0c1c57c8c3577431b380e323e Mon Sep 17 00:00:00 2001 From: Victor Mignot Date: Tue, 29 Jul 2025 08:39:33 +0200 Subject: use c99 instead of c23 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 8576e6f..053c357 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ ARCH = arm-none-eabi CC = $(ARCH)-gcc -CFLAGS = -mcpu=cortex-m4 -mthumb -mfloat-abi=hard -std=c23 -g -O0 -ffreestanding -Wpedantic -Wall -Wextra -Werror +CFLAGS = -mcpu=cortex-m4 -mthumb -mfloat-abi=hard -std=c99 -g -O0 -ffreestanding -Wpedantic -Wall -Wextra -Werror LDFLAGS = -Tlink.ld -nostdlib SRCDIR = src -- cgit v1.2.3