File tree 2 files changed +23
-9
lines changed
2 files changed +23
-9
lines changed Original file line number Diff line number Diff line change 18
18
# include <Zend/zend_config.w32.h>
19
19
#else
20
20
# include <main/php_config.h>
21
+ # include <stdlib.h>
22
+ # ifdef HAVE_SYS_TYPES_H
23
+ # include <sys/types.h>
24
+ # endif
25
+ # ifdef HAVE_SYS_SELECT_H
26
+ # include <sys/select.h>
27
+ # endif
28
+ # include <string.h>
21
29
#endif
22
30
23
- #include <stdlib.h>
24
- #ifdef HAVE_SYS_TYPES_H
25
- # include <sys/types.h>
26
- #endif
27
- #ifdef HAVE_SYS_SELECT_H
28
- #include <sys/select.h>
29
- #endif
30
- #include <string.h>
31
-
32
31
#include <stdint.h>
33
32
#include <stdbool.h>
34
33
Original file line number Diff line number Diff line change 24
24
25
25
#define ZEND_ENGINE_3
26
26
27
+ #if !defined(__CYGWIN__ ) && defined(_WIN32 )
28
+ # define TSRM_WIN32
29
+ # include <Zend/zend_config.w32.h>
30
+ #else
31
+ # include <main/php_config.h>
32
+ # include <stdlib.h>
33
+ # ifdef HAVE_SYS_TYPES_H
34
+ # include <sys/types.h>
35
+ # endif
36
+ # ifdef HAVE_SYS_SELECT_H
37
+ # include <sys/select.h>
38
+ # endif
39
+ # include <string.h>
40
+ #endif
41
+
27
42
#include "zend_types.h"
28
43
#include "zend_map_ptr.h"
29
44
#include "zend_errors.h"
You can’t perform that action at this time.
0 commit comments