From 7d78738e04df5af72cc15136fc550de0989ede30 Mon Sep 17 00:00:00 2001 From: Antti Korpi Date: Fri, 22 Apr 2016 03:01:46 +0100 Subject: Compile to C99 instead of GNU11 Simpler, now that we don't need the time structs anymore. --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index b8341c4..99b84d8 100644 --- a/makefile +++ b/makefile @@ -1,5 +1,5 @@ xkbcat: xkbcat.c - clang -O3 --std=gnu11 -pedantic -Wall -lX11 -lXi -o xkbcat xkbcat.c + clang -O3 --std=c99 -pedantic -Wall -lX11 -lXi -o xkbcat xkbcat.c clean: rm xkbcat .PHONY: xkbcat -- cgit v1.3-2-g0d8e