From 65d4b8e7d2c2889728563934b832d49620eb00e3 Mon Sep 17 00:00:00 2001 From: johannes Date: Fri, 3 May 2024 13:52:31 +0200 Subject: enforce c99 --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'makefile') diff --git a/makefile b/makefile index 63d2cb3..9569298 100644 --- a/makefile +++ b/makefile @@ -6,7 +6,7 @@ EXE := $(BIN_DIR)/dedit SRC := $(wildcard $(SRC_DIR)/*.c) OBJ := $(SRC:$(SRC_DIR)/%.c=$(OBJ_DIR)/%.o) -CFLAGS := -Wall -Wextra +CFLAGS := -Wall -Wextra -std=c99 -pedantic-errors .PHONY: all clean run format -- cgit v1.2.3