Zend/zend_{operators,variables}: include cleanup

This commit is contained in:
Max Kellermann 2023-01-04 10:28:20 +01:00 committed by George Peter Banyard
parent 6b34de8eba
commit 694ec1deea
5 changed files with 14 additions and 11 deletions

View file

@ -36,6 +36,7 @@
#include "zend_observer.h"
#include "zend_fibers.h"
#include "zend_call_stack.h"
#include "zend_strtod.h"
#include "Optimizer/zend_optimizer.h"
static size_t global_map_ptr_last = 0;

View file

@ -18,18 +18,20 @@
+----------------------------------------------------------------------+
*/
#include <ctype.h>
#include "zend.h"
#include "zend_operators.h"
#include "zend.h"
#include "zend_variables.h"
#include "zend_objects.h" // for zend_objects_new()
#include "zend_globals.h"
#include "zend_multiply.h" // for ZEND_SIGNED_MULTIPLY_LONG()
#include "zend_list.h"
#include "zend_API.h"
#include "zend_strtod.h"
#include "zend_exceptions.h"
#include "zend_closures.h"
#include <ctype.h>
#include <locale.h>
#ifdef HAVE_LANGINFO_H
# include <langinfo.h>

View file

@ -21,20 +21,19 @@
#ifndef 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 <assert.h>
#include <stddef.h>
#ifdef HAVE_IEEEFP_H
#include <ieeefp.h>
#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
BEGIN_EXTERN_C()

View file

@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
#include <stdio.h>
#include "zend_variables.h"
#include "zend.h"
#include "zend_API.h"
#include "zend_ast.h"

View file

@ -21,6 +21,7 @@
#ifndef ZEND_VARIABLES_H
#define ZEND_VARIABLES_H
#include "zend_hash.h" // for zend_array_dup()
#include "zend_types.h"
#include "zend_gc.h"