mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Zend/zend_{operators,variables}: include cleanup
This commit is contained in:
parent
6b34de8eba
commit
694ec1deea
5 changed files with 14 additions and 11 deletions
|
@ -36,6 +36,7 @@
|
||||||
#include "zend_observer.h"
|
#include "zend_observer.h"
|
||||||
#include "zend_fibers.h"
|
#include "zend_fibers.h"
|
||||||
#include "zend_call_stack.h"
|
#include "zend_call_stack.h"
|
||||||
|
#include "zend_strtod.h"
|
||||||
#include "Optimizer/zend_optimizer.h"
|
#include "Optimizer/zend_optimizer.h"
|
||||||
|
|
||||||
static size_t global_map_ptr_last = 0;
|
static size_t global_map_ptr_last = 0;
|
||||||
|
|
|
@ -18,18 +18,20 @@
|
||||||
+----------------------------------------------------------------------+
|
+----------------------------------------------------------------------+
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <ctype.h>
|
|
||||||
|
|
||||||
#include "zend.h"
|
|
||||||
#include "zend_operators.h"
|
#include "zend_operators.h"
|
||||||
|
#include "zend.h"
|
||||||
#include "zend_variables.h"
|
#include "zend_variables.h"
|
||||||
|
#include "zend_objects.h" // for zend_objects_new()
|
||||||
#include "zend_globals.h"
|
#include "zend_globals.h"
|
||||||
|
#include "zend_multiply.h" // for ZEND_SIGNED_MULTIPLY_LONG()
|
||||||
#include "zend_list.h"
|
#include "zend_list.h"
|
||||||
#include "zend_API.h"
|
#include "zend_API.h"
|
||||||
#include "zend_strtod.h"
|
#include "zend_strtod.h"
|
||||||
#include "zend_exceptions.h"
|
#include "zend_exceptions.h"
|
||||||
#include "zend_closures.h"
|
#include "zend_closures.h"
|
||||||
|
|
||||||
|
#include <ctype.h>
|
||||||
|
|
||||||
#include <locale.h>
|
#include <locale.h>
|
||||||
#ifdef HAVE_LANGINFO_H
|
#ifdef HAVE_LANGINFO_H
|
||||||
# include <langinfo.h>
|
# include <langinfo.h>
|
||||||
|
|
|
@ -21,20 +21,19 @@
|
||||||
#ifndef ZEND_OPERATORS_H
|
#ifndef ZEND_OPERATORS_H
|
||||||
#define ZEND_OPERATORS_H
|
#define ZEND_OPERATORS_H
|
||||||
|
|
||||||
#include <errno.h>
|
#include "zend_hash.h" // for zend_hash_num_elements()
|
||||||
|
#include "zend_object_handlers.h" // for struct _zend_object_handlers
|
||||||
|
#include "zend_portability.h" // for BEGIN_EXTERN_
|
||||||
|
#include "zend_types.h" // for zend_result
|
||||||
|
#include "zend_string.h" // for zend_string_copy()
|
||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <assert.h>
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
||||||
#ifdef HAVE_IEEEFP_H
|
#ifdef HAVE_IEEEFP_H
|
||||||
#include <ieeefp.h>
|
#include <ieeefp.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "zend_portability.h"
|
|
||||||
#include "zend_strtod.h"
|
|
||||||
#include "zend_multiply.h"
|
|
||||||
#include "zend_object_handlers.h"
|
|
||||||
|
|
||||||
#define LONG_SIGN_MASK ZEND_LONG_MIN
|
#define LONG_SIGN_MASK ZEND_LONG_MIN
|
||||||
|
|
||||||
BEGIN_EXTERN_C()
|
BEGIN_EXTERN_C()
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
+----------------------------------------------------------------------+
|
+----------------------------------------------------------------------+
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include "zend_variables.h"
|
||||||
#include "zend.h"
|
#include "zend.h"
|
||||||
#include "zend_API.h"
|
#include "zend_API.h"
|
||||||
#include "zend_ast.h"
|
#include "zend_ast.h"
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
#ifndef ZEND_VARIABLES_H
|
#ifndef ZEND_VARIABLES_H
|
||||||
#define ZEND_VARIABLES_H
|
#define ZEND_VARIABLES_H
|
||||||
|
|
||||||
|
#include "zend_hash.h" // for zend_array_dup()
|
||||||
#include "zend_types.h"
|
#include "zend_types.h"
|
||||||
#include "zend_gc.h"
|
#include "zend_gc.h"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue