From e6f13598fbe05bc2e26f63084e6c05d6c6f480f7 Mon Sep 17 00:00:00 2001 From: buffet Date: Mon, 22 Oct 2018 17:23:01 +0200 Subject: [PATCH] Changed to c11 --- config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.mk b/config.mk index 824e67d..e2d2343 100644 --- a/config.mk +++ b/config.mk @@ -12,6 +12,6 @@ INCS = -Isrc/ DEFS = -D_POSIX_C_SOURCE=2 -DVERSION_STRING=\"$(VERSION)\" -CFLAGS = -std=c99 -Wall -Wextra -pedantic -Os $(DEFS) $(INCS) +CFLAGS = -std=c11 -Wall -Wextra -pedantic -Os $(DEFS) $(INCS) LDFLAGS = -lxcb CPPFLAGS = -MD -MP