From: Kalle Sommer Nielsen Date: Tue, 18 Oct 2016 21:14:46 +0000 (+0200) Subject: Always include the header for nice() on Windows X-Git-Tag: php-7.2.0alpha1~1084 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e2b52c510effa0eaf58fb544f8a09b1e7121ec1f;p=php Always include the header for nice() on Windows --- diff --git a/ext/standard/exec.c b/ext/standard/exec.c index 0cf2b57191..1a387da142 100644 --- a/ext/standard/exec.c +++ b/ext/standard/exec.c @@ -54,6 +54,10 @@ #include #endif +#ifdef PHP_WIN32 +# include "win32/nice.h" +#endif + static size_t cmd_max_len; /* {{{ PHP_MINIT_FUNCTION(exec) */