diff options
author | Frank M. Kromann <fmk@php.net> | 2006-12-01 20:24:58 +0000 |
---|---|---|
committer | Frank M. Kromann <fmk@php.net> | 2006-12-01 20:24:58 +0000 |
commit | 66eb5b1dde5fb30eaadd1645da1f5f1b8cfaec3c (patch) | |
tree | c452776fd441714b5d6486b03f3f1309d3c5dc80 /ext/zip | |
parent | a6b3682dba9dfd834920537ff33b2015d35bf1b9 (diff) | |
download | php-git-66eb5b1dde5fb30eaadd1645da1f5f1b8cfaec3c.tar.gz |
Fix win32 build
Diffstat (limited to 'ext/zip')
-rw-r--r-- | ext/zip/lib/zip_dirent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zip/lib/zip_dirent.c b/ext/zip/lib/zip_dirent.c index 0eeb4ac561..8423ad5343 100644 --- a/ext/zip/lib/zip_dirent.c +++ b/ext/zip/lib/zip_dirent.c @@ -33,6 +33,7 @@ IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include "main/php_reentrancy.h" #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -45,7 +46,6 @@ #include "zip.h" #include "zipint.h" -#include "main/php_reentrancy.h" static time_t _zip_d2u_time(int, int); static char *_zip_readfpstr(FILE *, unsigned int, int, struct zip_error *); |