File tree 2 files changed +13
-3
lines changed
2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 18
18
*/
19
19
20
20
#include "zend_extensions.h"
21
- #include "zend_system_id.h"
21
+ #include "zend_arena.h"
22
+ #include "zend_globals.h" // for struct _zend_compiler_globals
23
+ #include "zend_globals_macros.h" // for CG()
24
+ #include "zend_system_id.h" // for zend_add_system_entropy()
22
25
23
26
ZEND_API zend_llist zend_extensions ;
24
27
ZEND_API uint32_t zend_extension_flags = 0 ;
Original file line number Diff line number Diff line change 20
20
#ifndef ZEND_EXTENSIONS_H
21
21
#define ZEND_EXTENSIONS_H
22
22
23
- #include "zend_compile.h"
24
- #include "zend_build.h"
23
+ #include "zend_build.h" // for ZEND_TOSTR()
24
+ #include "zend_portability.h" // for BEGIN_EXTERN_C
25
+ #include "zend_types.h" // for zend_result
26
+
27
+ #include <stddef.h> // for size_t
28
+
29
+ typedef struct _zend_execute_data zend_execute_data ;
30
+ typedef struct _zend_op_array zend_op_array ;
31
+ typedef struct _zend_llist zend_llist ;
25
32
26
33
/*
27
34
The constants below are derived from ext/opcache/ZendAccelerator.h
You can’t perform that action at this time.
0 commit comments