diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2011-06-03 07:00:38 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2011-06-03 07:00:38 +0000 |
commit | 52e353e9732b00d41111c1d2c488401df0c1ad96 (patch) | |
tree | 537cf39fe9852d0e332e1d426fd1f084216ca706 /ext/pcntl/php_signal.c | |
parent | 14e330556cd4c73282bb9f619dae9b60fb037865 (diff) | |
download | php-git-52e353e9732b00d41111c1d2c488401df0c1ad96.tar.gz |
Compiler warning fix
Diffstat (limited to 'ext/pcntl/php_signal.c')
-rw-r--r-- | ext/pcntl/php_signal.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/pcntl/php_signal.c b/ext/pcntl/php_signal.c index 2e5ce95316..86e5936fad 100644 --- a/ext/pcntl/php_signal.c +++ b/ext/pcntl/php_signal.c @@ -20,6 +20,8 @@ #include "TSRM.h" #include "php_signal.h" +#include "Zend/zend.h" +#include "Zend/zend_signal.h" /* php_signal using sigaction is derrived from Advanced Programing * in the Unix Environment by W. Richard Stevens p 298. */ |