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
|
@ -27,12 +27,6 @@
|
|||
#include "php_pdo_sqlite_int.h"
|
||||
#include "zend_exceptions.h"
|
||||
|
||||
/* {{{ pdo_sqlite_functions[] */
|
||||
static const zend_function_entry pdo_sqlite_functions[] = {
|
||||
PHP_FE_END
|
||||
};
|
||||
/* }}} */
|
||||
|
||||
/* {{{ pdo_sqlite_deps */
|
||||
static const zend_module_dep pdo_sqlite_deps[] = {
|
||||
ZEND_MOD_REQUIRED("pdo")
|
||||
|
@ -45,7 +39,7 @@ zend_module_entry pdo_sqlite_module_entry = {
|
|||
STANDARD_MODULE_HEADER_EX, NULL,
|
||||
pdo_sqlite_deps,
|
||||
"pdo_sqlite",
|
||||
pdo_sqlite_functions,
|
||||
NULL,
|
||||
PHP_MINIT(pdo_sqlite),
|
||||
PHP_MSHUTDOWN(pdo_sqlite),
|
||||
NULL,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue