Zend/zend_weakrefs: include cleanup

This commit is contained in:
Max Kellermann 2023-01-04 20:35:48 +01:00 committed by George Peter Banyard
parent 72dd94e1c6
commit a93f264526
2 changed files with 5 additions and 4 deletions

View file

@ -14,11 +14,11 @@
+----------------------------------------------------------------------+
*/
#include "zend.h"
#include "zend_interfaces.h"
#include "zend_objects_API.h"
#include "zend_weakrefs.h"
#include "zend_API.h" // for ZEND_BEGIN_ARG_INFO_EX
#include "zend_objects.h" // for zend_object_std_init()
#include "zend_weakrefs_arginfo.h"
#include "zend_interfaces.h" // for zend_create_internal_iterator_zval()
typedef struct _zend_weakref {
zend_object *referent;

View file

@ -17,7 +17,8 @@
#ifndef ZEND_WEAKREFS_H
#define ZEND_WEAKREFS_H
#include "zend_alloc.h"
#include "zend_portability.h" // for BEGIN_EXTERN_C
#include "zend_types.h" // for zval
BEGIN_EXTERN_C()