Zend/zend_list: include cleanup

This commit is contained in:
Max Kellermann 2023-01-05 09:01:24 +01:00 committed by George Peter Banyard
parent f15747c26b
commit 9b9ea0d7c6
2 changed files with 11 additions and 5 deletions

View file

@ -19,10 +19,12 @@
/* resource lists */ /* resource lists */
#include "zend.h"
#include "zend_list.h" #include "zend_list.h"
#include "zend_API.h" #include "zend_execute.h" // for get_active_class_name()
#include "zend_globals.h" #include "zend_globals.h" // for struct _zend_executor_globals
#include "zend_globals_macros.h" // for EG()
#include "zend_hash.h"
#include "zend_types.h" // for zval
ZEND_API int le_index_ptr; ZEND_API int le_index_ptr;

View file

@ -20,8 +20,12 @@
#ifndef ZEND_LIST_H #ifndef ZEND_LIST_H
#define ZEND_LIST_H #define ZEND_LIST_H
#include "zend_hash.h" #include "zend_portability.h" // for BEGIN_EXTERN_C
#include "zend_globals.h"
typedef struct _zend_array HashTable;
typedef struct _zend_resource zend_resource;
typedef struct _zend_string zend_string;
typedef struct _zval_struct zval;
BEGIN_EXTERN_C() BEGIN_EXTERN_C()