File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 17
17
+----------------------------------------------------------------------+
18
18
*/
19
19
20
- #include "zend.h"
21
- #include "zend_API.h"
22
- #include "zend_attributes.h"
23
- #include "zend_gc.h"
24
20
#include "zend_builtin_functions.h"
21
+ #include "zend_API.h" // for ZEND_MINIT_FUNCTION
22
+ #include "zend_attributes.h" // for zend_add_class_attribute()
23
+ #include "zend_closures.h" // for zend_ce_closure
25
24
#include "zend_constants.h"
26
- #include "zend_ini.h"
27
- #include "zend_interfaces.h"
28
- #include "zend_exceptions.h"
25
+ #include "zend_exceptions.h" // for zend_register_default_classes()
29
26
#include "zend_extensions.h"
30
- #include "zend_closures.h"
31
27
#include "zend_generators.h"
28
+ #include "zend_ini.h"
29
+ #include "zend_interfaces.h" // for zend_call_method_with_1_params()
32
30
#include "zend_builtin_functions_arginfo.h"
33
- #include "zend_smart_str.h"
34
31
35
32
/* }}} */
36
33
Original file line number Diff line number Diff line change 20
20
#ifndef ZEND_BUILTIN_FUNCTIONS_H
21
21
#define ZEND_BUILTIN_FUNCTIONS_H
22
22
23
+ #include "zend_portability.h" // for BEGIN_EXTERN_C
23
24
#include "zend_result.h"
24
25
26
+ typedef struct _zval_struct zval ;
27
+
25
28
zend_result zend_startup_builtin_functions (void );
26
29
27
30
BEGIN_EXTERN_C ()
You can’t perform that action at this time.
0 commit comments