diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-08-01 09:42:04 +0200 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-08-01 10:07:05 +0200 |
commit | ec22e5aa3841770259161ff260da19b781af536e (patch) | |
tree | 0f3ec76f878b24410a94c66f635e6149ce85e812 /ext/xsl/php_xsl.c | |
parent | d92229d8c78aac25925284e23aa7903dca9ed005 (diff) | |
download | php-git-ec22e5aa3841770259161ff260da19b781af536e.tar.gz |
Get rid of empty function entries
Closes GH-5917
Diffstat (limited to 'ext/xsl/php_xsl.c')
-rw-r--r-- | ext/xsl/php_xsl.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/ext/xsl/php_xsl.c b/ext/xsl/php_xsl.c index c8d20e0e94..44debcaca7 100644 --- a/ext/xsl/php_xsl.c +++ b/ext/xsl/php_xsl.c @@ -27,15 +27,6 @@ zend_class_entry *xsl_xsltprocessor_class_entry; static zend_object_handlers xsl_object_handlers; -/* {{{ xsl_functions[] - * - * Every user visible function must have an entry in xsl_functions[]. - */ -const zend_function_entry xsl_functions[] = { - PHP_FE_END -}; -/* }}} */ - static const zend_module_dep xsl_deps[] = { ZEND_MOD_REQUIRED("libxml") ZEND_MOD_END @@ -46,7 +37,7 @@ zend_module_entry xsl_module_entry = { STANDARD_MODULE_HEADER_EX, NULL, xsl_deps, "xsl", - xsl_functions, + NULL, PHP_MINIT(xsl), PHP_MSHUTDOWN(xsl), NULL, |