summaryrefslogtreecommitdiff
path: root/execute.c
diff options
context:
space:
mode:
Diffstat (limited to 'execute.c')
-rw-r--r--execute.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/execute.c b/execute.c
index d2034f6..db4a88d 100644
--- a/execute.c
+++ b/execute.c
@@ -24,7 +24,6 @@
24#endif 24#endif
25 25
26#include <fcntl.h> 26#include <fcntl.h>
27#include <fnmatch.h>
28#include "php.h" 27#include "php.h"
29#include "php_ini.h" 28#include "php_ini.h"
30#include "zend_hash.h" 29#include "zend_hash.h"
@@ -40,9 +39,15 @@
40#include "sha256.h" 39#include "sha256.h"
41 40
42#ifdef PHP_WIN32 41#ifdef PHP_WIN32
42# ifdef HAVE_FNMATCH
43# include "win32/fnmatch.h"
44# endif
43# include "win32/winutil.h" 45# include "win32/winutil.h"
44# include "win32/time.h" 46# include "win32/time.h"
45#else 47#else
48# ifdef HAVE_FNMATCH
49# include <fnmatch.h>
50# endif
46# include <sys/time.h> 51# include <sys/time.h>
47#endif 52#endif
48 53