File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 28
28
#ifndef _GNU_SOURCE
29
29
# define _GNU_SOURCE
30
30
#endif
31
- #include <string.h>
32
31
33
- #include "zend.h"
34
- #include "zend_globals.h"
32
+ #include "zend_signal.h"
33
+ #include "zend_alloc.h"
34
+ #include "zend.h" // for zend_output_debug_string(), zend_error(), ...
35
+
36
+ #include <errno.h>
35
37
#include <signal.h>
38
+ #include <string.h>
36
39
37
40
#ifdef HAVE_UNISTD_H
38
41
#include <unistd.h>
Original file line number Diff line number Diff line change 21
21
#ifndef ZEND_SIGNAL_H
22
22
#define ZEND_SIGNAL_H
23
23
24
+ #ifdef PHP_WIN32
25
+ #include "config.w32.h"
26
+ #else
27
+ #include "php_config.h" // for ZEND_SIGNALS
28
+ #endif
29
+
24
30
#ifdef ZEND_SIGNALS
25
31
32
+ #include "zend_portability.h" // for BEGIN_EXTERN_C
33
+
26
34
#include <signal.h>
35
+ #include <stdbool.h>
27
36
28
37
#ifndef NSIG
29
38
#define NSIG 65
You can’t perform that action at this time.
0 commit comments