From d2c63f1f00130a8709c1d5676cfd519da9ea9751 Mon Sep 17 00:00:00 2001 From: Ilya Tumaykin Date: Fri, 29 Jul 2016 02:14:35 +0100 Subject: [PATCH] Fix: Add a couple of missing stdlib.h includes required for exit() https://github.com/knopwob/dunst/issues/267 --- menu.c | 1 + notification.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/menu.c b/menu.c index 3839df4..fb05798 100644 --- a/menu.c +++ b/menu.c @@ -1,6 +1,7 @@ /* copyright 2013 Sascha Kruse and contributors (see LICENSE for licensing information) */ #define _GNU_SOURCE +#include #include #include #include diff --git a/notification.c b/notification.c index 1039cb8..b170977 100644 --- a/notification.c +++ b/notification.c @@ -1,7 +1,7 @@ /* copyright 2013 Sascha Kruse and contributors (see LICENSE for licensing information) */ #define _GNU_SOURCE - +#include #include #include #include