From: Jan-Erik Rediger Date: Sat, 28 Jul 2012 09:33:01 +0000 (+0300) Subject: Include sys/wait.h to avoid compiler warning X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/c6c19c8372fd9258a35b7d4bdcb454898e6c1413 Include sys/wait.h to avoid compiler warning gcc warned about an implicit declaration of function 'wait3'. Including this header fixes this. --- diff --git a/src/sentinel.c b/src/sentinel.c index 227fb693..a5ce31ee 100644 --- a/src/sentinel.c +++ b/src/sentinel.c @@ -36,6 +36,7 @@ #include #include #include +#include extern char **environ;