From 8edb66089b68c82892e00059e30ddc6e6bad7956 Mon Sep 17 00:00:00 2001 From: Bandie Date: Thu, 29 Mar 2018 05:19:25 +0200 Subject: [PATCH] --std=c99 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 56d4658..85470f9 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ all: mkdir -p bin - cc src/notify_touchy.c -o bin/notify_touchy `pkg-config --cflags --libs libnotify` + cc --std=c99 src/notify_touchy.c -o bin/notify_touchy `pkg-config --cflags --libs libnotify` install: mkdir -p /usr/local/bin