summaryrefslogtreecommitdiff
path: root/ext/zip/lib/zipconf.h
diff options
context:
space:
mode:
authorMichael Wallner <mike@php.net>2013-08-06 22:45:35 +0200
committerMichael Wallner <mike@php.net>2013-08-06 22:49:56 +0200
commit14caf174ff219376e4f1234bd297ffe973cc416e (patch)
tree73532567f2c68b42ad55efbbaf1d85d7f81f6255 /ext/zip/lib/zipconf.h
parentca0497bba2222c282c39048776a9f61052e67643 (diff)
downloadphp-git-14caf174ff219376e4f1234bd297ffe973cc416e.tar.gz
unify stdint type usage
if you need C99 stdint types, just include "php_stdint.h"
Diffstat (limited to 'ext/zip/lib/zipconf.h')
-rw-r--r--ext/zip/lib/zipconf.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/ext/zip/lib/zipconf.h b/ext/zip/lib/zipconf.h
index 2b4340c861..646c0bde53 100644
--- a/ext/zip/lib/zipconf.h
+++ b/ext/zip/lib/zipconf.h
@@ -13,11 +13,7 @@
#define LIBZIP_VERSION_MINOR 10
#define LIBZIP_VERSION_MICRO 0
-#ifdef PHP_WIN32
-#include <win32/php_stdint.h>
-#else
-#include <inttypes.h>
-#endif
+#include <php_stdint.h>
typedef int8_t zip_int8_t;
#define ZIP_INT8_MIN INT8_MIN