summaryrefslogtreecommitdiff
path: root/ext/zip/zip.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/zip/zip.c')
-rw-r--r--ext/zip/zip.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/ext/zip/zip.c b/ext/zip/zip.c
index 27f72bb224..d37078b13b 100644
--- a/ext/zip/zip.c
+++ b/ext/zip/zip.c
@@ -18,6 +18,10 @@
/* $Id$ */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "php.h"
#include "php_ini.h"
#include "php_zip.h"
@@ -56,7 +60,7 @@ function_entry zip_functions[] = {
/* {{{ zip_module_entry
*/
zend_module_entry zip_module_entry = {
- STANDARD_MODULE_HEADER,
+ STANDARD_MODULE_HEADER,
"zip",
zip_functions,
PHP_MINIT(zip),
@@ -64,7 +68,7 @@ zend_module_entry zip_module_entry = {
NULL,
NULL,
PHP_MINFO(zip),
- NO_VERSION_YET,
+ NO_VERSION_YET,
STANDARD_MODULE_PROPERTIES
};
/* }}} */