From c6c19c8372fd9258a35b7d4bdcb454898e6c1413 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 227fb6938..a5ce31ee8 100644 --- a/src/sentinel.c +++ b/src/sentinel.c @@ -36,6 +36,7 @@ #include #include #include +#include extern char **environ; -- GitLab