summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg.h
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2016-07-13 00:37:25 +0200
committerBob Weinand <bobwei9@hotmail.com>2016-07-13 00:37:25 +0200
commitd08cb90462d6a1339d216e6122be55ee55c3f9d8 (patch)
treef01e1735cd337f01063fc57aa29aa28d33185a36 /sapi/phpdbg/phpdbg.h
parentef6d0c8b6d0aec0e8a9f02fdd60197db244840a1 (diff)
downloadphp-git-d08cb90462d6a1339d216e6122be55ee55c3f9d8.tar.gz
Cleanup zend_/signal usage in phpdbg.c
Diffstat (limited to 'sapi/phpdbg/phpdbg.h')
-rw-r--r--sapi/phpdbg/phpdbg.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/sapi/phpdbg/phpdbg.h b/sapi/phpdbg/phpdbg.h
index 227aaebe41..26bfc490df 100644
--- a/sapi/phpdbg/phpdbg.h
+++ b/sapi/phpdbg/phpdbg.h
@@ -45,11 +45,9 @@
#include "zend_globals.h"
#include "zend_ini_scanner.h"
#include "zend_stream.h"
-#ifndef _WIN32
-# include "zend_signal.h"
-# if !defined(ZEND_SIGNALS) && defined(HAVE_SIGNAL_H)
-# include <signal.h>
-# endif
+#include "zend_signal.h"
+#if !defined(_WIN32) && !defined(ZEND_SIGNALS) && defined(HAVE_SIGNAL_H)
+# include <signal.h>
#endif
#include "SAPI.h"
#include <fcntl.h>