File tree 2 files changed +12
-3
lines changed
2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 19
19
+----------------------------------------------------------------------+
20
20
*/
21
21
22
- #include "zend.h"
23
- #include "zend_compile.h"
24
22
#include "zend_stream.h"
23
+ #include "zend_globals.h" // struct _zend_compiler_globals
24
+ #include "zend_globals_macros.h" // for CG()
25
+ #include "zend_string.h"
26
+ #include "zend.h" // for zend_stream_open_function
25
27
26
28
ZEND_DLIMPORT int isatty (int fd );
27
29
Original file line number Diff line number Diff line change 22
22
#ifndef ZEND_STREAM_H
23
23
#define ZEND_STREAM_H
24
24
25
- #include <sys/types.h>
25
+ #include "zend_portability.h" // for BEGIN_EXTERN_C
26
+ #include "zend_types.h" // for zend_uchar
27
+
28
+ #include <stdbool.h>
29
+ #include <stdio.h> // for FILE
30
+ #include <sys/types.h> // for ssize_t
26
31
#include <sys/stat.h>
27
32
33
+ typedef struct _zend_string zend_string ;
34
+
28
35
/* Lightweight stream implementation for the ZE scanners.
29
36
* These functions are private to the engine.
30
37
* */
You can’t perform that action at this time.
0 commit comments