We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5190e5c commit 05c7653Copy full SHA for 05c7653
Zend/zend_call_stack.c
@@ -18,11 +18,11 @@
18
19
/* Inspired from Chromium's stack_util.cc */
20
21
-#include "zend.h"
22
-#include "zend_globals.h"
23
-#include "zend_portability.h"
24
#include "zend_call_stack.h"
+#include "zend_globals.h"
+
25
#include <stdint.h>
26
#ifdef ZEND_WIN32
27
# include <processthreadsapi.h>
28
# include <memoryapi.h>
Zend/zend_call_stack.h
@@ -19,12 +19,14 @@
#ifndef ZEND_CALL_STACK_H
#define ZEND_CALL_STACK_H
+#include "zend_portability.h" // for zend_always_inline
#ifdef __APPLE__
# include <pthread.h>
#endif
+#include <stdbool.h>
29
30
#ifdef ZEND_CHECK_STACK_LIMIT
31
32
typedef struct _zend_call_stack {
0 commit comments