diff options
Diffstat (limited to 'ext/pcntl/php_pcntl.h')
-rw-r--r-- | ext/pcntl/php_pcntl.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/pcntl/php_pcntl.h b/ext/pcntl/php_pcntl.h index 68f2983a24..0183a7c093 100644 --- a/ext/pcntl/php_pcntl.h +++ b/ext/pcntl/php_pcntl.h @@ -21,7 +21,9 @@ #ifndef PHP_PCNTL_H #define PHP_PCNTL_H -#define HAVE_WCONTINUED defined(WCONTINUED) && defined (WIFCONTINUED) +#if defined(WCONTINUED) && defined(WIFCONTINUED) +#define HAVE_WCONTINUED 1 +#endif extern zend_module_entry pcntl_module_entry; #define phpext_pcntl_ptr &pcntl_module_entry |