From 8a8e560b87028f9f39f9f1d80d44d3170ed4af6f Mon Sep 17 00:00:00 2001 From: Jan-Erik Rediger Date: Sat, 28 Jul 2012 12:33:01 +0300 Subject: [PATCH] Include sys/wait.h to avoid compiler warning gcc warned about an implicit declaration of function 'wait3'. Including this header fixes this. --- src/sentinel.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sentinel.c b/src/sentinel.c index 24bf993f..193320a5 100644 --- a/src/sentinel.c +++ b/src/sentinel.c @@ -36,6 +36,7 @@ #include #include #include +#include extern char **environ;