We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4ba16f commit f377e15Copy full SHA for f377e15
Zend/zend_ptr_stack.c
@@ -17,8 +17,8 @@
17
+----------------------------------------------------------------------+
18
*/
19
20
-#include "zend.h"
21
#include "zend_ptr_stack.h"
+
22
#include <stdarg.h>
23
24
ZEND_API void zend_ptr_stack_init_ex(zend_ptr_stack *stack, bool persistent)
Zend/zend_ptr_stack.h
@@ -20,6 +20,9 @@
#ifndef ZEND_PTR_STACK_H
#define ZEND_PTR_STACK_H
+#include "zend_alloc.h" // for safe_perealloc()
+#include "zend_portability.h" // for BEGIN_EXTERN_C
25
26
typedef struct _zend_ptr_stack {
27
int top, max;
28
void **elements;
0 commit comments