mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Zend/zend_llist: include cleanup
This commit is contained in:
parent
921274d2b8
commit
7e87551c37
2 changed files with 3 additions and 1 deletions
|
@ -17,8 +17,8 @@
|
|||
+----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
#include "zend.h"
|
||||
#include "zend_llist.h"
|
||||
#include "zend_alloc.h" //for pemalloc()
|
||||
#include "zend_sort.h"
|
||||
|
||||
ZEND_API void zend_llist_init(zend_llist *l, size_t size, llist_dtor_func_t dtor, unsigned char persistent)
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
#ifndef ZEND_LLIST_H
|
||||
#define ZEND_LLIST_H
|
||||
|
||||
#include "zend_portability.h" // for BEGIN_EXTERN_C
|
||||
|
||||
typedef struct _zend_llist_element {
|
||||
struct _zend_llist_element *next;
|
||||
struct _zend_llist_element *prev;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue