diff options
-rw-r--r-- | ext/xsl/php_xsl.c | 2 | ||||
-rw-r--r-- | ext/xsl/xsl_fe.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/xsl/php_xsl.c b/ext/xsl/php_xsl.c index 62d8863d6b..327ffc2263 100644 --- a/ext/xsl/php_xsl.c +++ b/ext/xsl/php_xsl.c @@ -31,7 +31,7 @@ /* If you declare any globals in php_xsl.h uncomment this: ZEND_DECLARE_MODULE_GLOBALS(xsl) */ - +zend_class_entry *xsl_xsltprocessor_class_entry; static zend_object_handlers xsl_object_handlers; /* {{{ xsl_functions[] diff --git a/ext/xsl/xsl_fe.h b/ext/xsl/xsl_fe.h index d0c673271a..c6e9a68daf 100644 --- a/ext/xsl/xsl_fe.h +++ b/ext/xsl/xsl_fe.h @@ -22,7 +22,7 @@ #define XSL_FE_H extern zend_function_entry php_xsl_xsltprocessor_class_functions[]; -zend_class_entry *xsl_xsltprocessor_class_entry; +extern zend_class_entry *xsl_xsltprocessor_class_entry; PHP_FUNCTION(xsl_xsltprocessor_import_stylesheet); PHP_FUNCTION(xsl_xsltprocessor_transform_to_doc); |