mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
Zend/zend_extensions: include cleanup
This commit is contained in:
parent
b1d48774a7
commit
b088575119
2 changed files with 13 additions and 3 deletions
|
@ -18,7 +18,10 @@
|
|||
*/
|
||||
|
||||
#include "zend_extensions.h"
|
||||
#include "zend_system_id.h"
|
||||
#include "zend_arena.h"
|
||||
#include "zend_globals.h" // for struct _zend_compiler_globals
|
||||
#include "zend_globals_macros.h" // for CG()
|
||||
#include "zend_system_id.h" // for zend_add_system_entropy()
|
||||
|
||||
ZEND_API zend_llist zend_extensions;
|
||||
ZEND_API uint32_t zend_extension_flags = 0;
|
||||
|
|
|
@ -20,8 +20,15 @@
|
|||
#ifndef ZEND_EXTENSIONS_H
|
||||
#define ZEND_EXTENSIONS_H
|
||||
|
||||
#include "zend_compile.h"
|
||||
#include "zend_build.h"
|
||||
#include "zend_build.h" // for ZEND_TOSTR()
|
||||
#include "zend_portability.h" // for BEGIN_EXTERN_C
|
||||
#include "zend_types.h" // for zend_result
|
||||
|
||||
#include <stddef.h> // for size_t
|
||||
|
||||
typedef struct _zend_execute_data zend_execute_data;
|
||||
typedef struct _zend_op_array zend_op_array;
|
||||
typedef struct _zend_llist zend_llist;
|
||||
|
||||
/*
|
||||
The constants below are derived from ext/opcache/ZendAccelerator.h
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue