mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Get rid of empty function entries
Closes GH-5917
This commit is contained in:
parent
d92229d8c7
commit
ec22e5aa38
10 changed files with 10 additions and 71 deletions
|
@ -214,12 +214,6 @@ ZEND_TSRMLS_CACHE_UPDATE();
|
|||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ pdo_mysql_functions[] */
|
||||
static const zend_function_entry pdo_mysql_functions[] = {
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
/* {{{ pdo_mysql_deps[] */
|
||||
static const zend_module_dep pdo_mysql_deps[] = {
|
||||
ZEND_MOD_REQUIRED("pdo")
|
||||
|
@ -235,7 +229,7 @@ zend_module_entry pdo_mysql_module_entry = {
|
|||
STANDARD_MODULE_HEADER_EX, NULL,
|
||||
pdo_mysql_deps,
|
||||
"pdo_mysql",
|
||||
pdo_mysql_functions,
|
||||
NULL,
|
||||
PHP_MINIT(pdo_mysql),
|
||||
PHP_MSHUTDOWN(pdo_mysql),
|
||||
#if defined(PDO_USE_MYSQLND) && PDO_DBG_ENABLED
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue