Skip to content

Commit e39ba0b

Browse files
committed
Zend/zend_hash: include cleanup
1 parent f572a8a commit e39ba0b

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Zend/zend_hash.c

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
+----------------------------------------------------------------------+
1919
*/
2020

21+
#include "zend_hash.h"
2122
#include "zend.h"
2223
#include "zend_globals.h"
2324
#include "zend_variables.h"

Zend/zend_hash.h

+5-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,11 @@
2121
#ifndef ZEND_HASH_H
2222
#define ZEND_HASH_H
2323

24-
#include "zend.h"
25-
#include "zend_sort.h"
24+
#include "zend_alloc.h" // for pefree()
25+
#include "zend_long.h"
26+
#include "zend_portability.h" // for BEGIN_EXTERN_C
27+
#include "zend_sort.h" // for zend_sort()
28+
#include "zend_string.h" // for ZSTR_VAL()
2629

2730
#define HASH_KEY_IS_STRING 1
2831
#define HASH_KEY_IS_LONG 2

0 commit comments

Comments
 (0)