From 002ac948d9e62e778c776132122af551b8fc0297 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 10 Dec 2017 02:21:10 -0500 Subject: [PATCH] Specify C standard and add -pedantic --- Makefile | 2 +- diff --git a/Makefile b/Makefile index c88d1e2c8f91dc8554f5191a211e7866d2f2647c..c0b12512fd734aeb8411ae320b8097c7fd55ef15 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC=cc -CFLAGS=-Wall -Wextra -Werror -Wno-unused-parameter +CFLAGS=-Wall -Wextra -Werror -Wno-unused-parameter -std=c99 -pedantic LDFLAGS=-static INCLUDE=-Iinclude PREFIX=/usr/local -- 2.48.1