From 049f0ed97c43d4bfa52f4eb44a727786b3d991c9 Mon Sep 17 00:00:00 2001 From: Andrey Shamis Date: Mon, 26 Mar 2018 08:44:34 +0300 Subject: [PATCH] Fix compilation c99 issue Signed-off-by: Andrey Shamis --- makefile => Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename makefile => Makefile (92%) diff --git a/makefile b/Makefile similarity index 92% rename from makefile rename to Makefile index acf8a13..872d0f3 100755 --- a/makefile +++ b/Makefile @@ -5,7 +5,7 @@ PROGRAM = dpcmd CC = gcc -CFLAGS = -Os -Wall -lpthread +CFLAGS = -Os -Wall -lpthread -std=gnu99 UNAME_OS := $(shell lsb_release -si)