File tree 5 files changed +14
-11
lines changed
5 files changed +14
-11
lines changed Original file line number Diff line number Diff line change 36
36
#include "zend_observer.h"
37
37
#include "zend_fibers.h"
38
38
#include "zend_call_stack.h"
39
+ #include "zend_strtod.h"
39
40
#include "Optimizer/zend_optimizer.h"
40
41
41
42
static size_t global_map_ptr_last = 0 ;
Original file line number Diff line number Diff line change 18
18
+----------------------------------------------------------------------+
19
19
*/
20
20
21
- #include <ctype.h>
22
-
23
- #include "zend.h"
24
21
#include "zend_operators.h"
22
+ #include "zend.h"
25
23
#include "zend_variables.h"
24
+ #include "zend_objects.h" // for zend_objects_new()
26
25
#include "zend_globals.h"
26
+ #include "zend_multiply.h" // for ZEND_SIGNED_MULTIPLY_LONG()
27
27
#include "zend_list.h"
28
28
#include "zend_API.h"
29
29
#include "zend_strtod.h"
30
30
#include "zend_exceptions.h"
31
31
#include "zend_closures.h"
32
32
33
+ #include <ctype.h>
34
+
33
35
#include <locale.h>
34
36
#ifdef HAVE_LANGINFO_H
35
37
# include <langinfo.h>
Original file line number Diff line number Diff line change 21
21
#ifndef ZEND_OPERATORS_H
22
22
#define ZEND_OPERATORS_H
23
23
24
- #include <errno.h>
24
+ #include "zend_hash.h" // for zend_hash_num_elements()
25
+ #include "zend_object_handlers.h" // for struct _zend_object_handlers
26
+ #include "zend_portability.h" // for BEGIN_EXTERN_
27
+ #include "zend_types.h" // for zend_result
28
+ #include "zend_string.h" // for zend_string_copy()
29
+
25
30
#include <math.h>
26
- #include <assert.h>
27
31
#include <stddef.h>
28
32
29
33
#ifdef HAVE_IEEEFP_H
30
34
#include <ieeefp.h>
31
35
#endif
32
36
33
- #include "zend_portability.h"
34
- #include "zend_strtod.h"
35
- #include "zend_multiply.h"
36
- #include "zend_object_handlers.h"
37
-
38
37
#define LONG_SIGN_MASK ZEND_LONG_MIN
39
38
40
39
BEGIN_EXTERN_C ()
Original file line number Diff line number Diff line change 18
18
+----------------------------------------------------------------------+
19
19
*/
20
20
21
- #include <stdio.h>
21
+ #include "zend_variables.h"
22
22
#include "zend.h"
23
23
#include "zend_API.h"
24
24
#include "zend_ast.h"
Original file line number Diff line number Diff line change 21
21
#ifndef ZEND_VARIABLES_H
22
22
#define ZEND_VARIABLES_H
23
23
24
+ #include "zend_hash.h" // for zend_array_dup()
24
25
#include "zend_types.h"
25
26
#include "zend_gc.h"
26
27
You can’t perform that action at this time.
0 commit comments