Zend/zend_API: include cleanup

This commit is contained in:
Max Kellermann 2023-01-05 10:33:43 +01:00 committed by George Peter Banyard
parent 9b9ea0d7c6
commit ef7fbfd710
2 changed files with 9 additions and 11 deletions

View file

@ -19,15 +19,13 @@
+----------------------------------------------------------------------+ +----------------------------------------------------------------------+
*/ */
#include "zend.h"
#include "zend_execute.h"
#include "zend_API.h" #include "zend_API.h"
#include "zend_modules.h" #include "zend_arena.h"
#include "zend_objects.h" // for zend_objects_new()
#include "zend_extensions.h" #include "zend_extensions.h"
#include "zend_constants.h" #include "zend_constants.h"
#include "zend_interfaces.h" #include "zend_interfaces.h" // for zend_ce_stringable
#include "zend_exceptions.h" #include "zend_exceptions.h"
#include "zend_closures.h"
#include "zend_inheritance.h" #include "zend_inheritance.h"
#include "zend_ini.h" #include "zend_ini.h"
#include "zend_enum.h" #include "zend_enum.h"

View file

@ -22,13 +22,13 @@
#ifndef ZEND_API_H #ifndef ZEND_API_H
#define ZEND_API_H #define ZEND_API_H
#include "zend_modules.h" #include "zend_compile.h" // for zif_handler
#include "zend_list.h" #include "zend_execute.h" // for get_active_function_or_method_name()
#include "zend_operators.h" #include "zend_globals.h" // for struct _zend_compiler_globals used by ZEND_MAP_PTR_GET_IMM()
#include "zend_variables.h" #include "zend_globals_macros.h" // for CG() used by ZEND_MAP_PTR_GET_IMM()
#include "zend_execute.h" #include "zend_portability.h" // for BEGIN_EXTERN_C
#include "zend_type_info.h"
typedef struct _zend_module_entry zend_module_entry;
BEGIN_EXTERN_C() BEGIN_EXTERN_C()