From bc4321cbd42310cbb138d2f1f894b80366c976f9 Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Sun, 22 Apr 2018 14:16:23 +0200 Subject: [PATCH] Make code -Wstrict-prototypes compliant --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 218c165..1819f38 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ TARGET = mgos_i2c CC = gcc # CFLAGS = -g -O -Wall -Wextra -std=c89 -pedantic -Wmissing-prototypes -Wstrict-prototypes -Wold-style-definition -CFLAGS = -g -O -Wall -Wextra -pedantic -Wmissing-prototypes -Wold-style-definition +CFLAGS = -g -O -Wall -Wextra -pedantic -Wmissing-prototypes -Wstrict-prototypes -Wold-style-definition LINKER = gcc LFLAGS = -O -Wall -I. -lm