diff options
author | Anatol Belski <ab@php.net> | 2014-11-10 09:30:29 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-11-10 10:58:20 +0100 |
commit | 25e75cd091e607c531260dc1cc2937b7461d894f (patch) | |
tree | d9a151002ee9e66b6c94a33426bc518670c87b14 /win32 | |
parent | 999d387bf8183e6ddb755dd3e6e4454044c28641 (diff) | |
download | php-git-25e75cd091e607c531260dc1cc2937b7461d894f.tar.gz |
use proper declarations for zend_stat_t
Diffstat (limited to 'win32')
-rw-r--r-- | win32/glob.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win32/glob.h b/win32/glob.h index 63b8fc2f67..24ae69467c 100644 --- a/win32/glob.h +++ b/win32/glob.h @@ -47,7 +47,8 @@ # include <sys/cdefs.h> #endif -zend_stat_t; +#include "Zend/zend_stream.h" + typedef struct { int gl_pathc; /* Count of total paths so far. */ int gl_matchc; /* Count of paths matching pattern. */ |