summaryrefslogtreecommitdiff
path: root/ext/pcntl/php_signal.c
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2011-06-03 07:00:38 +0000
committerIlia Alshanetsky <iliaa@php.net>2011-06-03 07:00:38 +0000
commit52e353e9732b00d41111c1d2c488401df0c1ad96 (patch)
tree537cf39fe9852d0e332e1d426fd1f084216ca706 /ext/pcntl/php_signal.c
parent14e330556cd4c73282bb9f619dae9b60fb037865 (diff)
downloadphp-git-52e353e9732b00d41111c1d2c488401df0c1ad96.tar.gz
Compiler warning fix
Diffstat (limited to 'ext/pcntl/php_signal.c')
-rw-r--r--ext/pcntl/php_signal.c2
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. */