Get rid of empty function entries

Closes GH-5917
This commit is contained in:
Máté Kocsis 2020-08-01 09:42:04 +02:00
parent d92229d8c7
commit ec22e5aa38
No known key found for this signature in database
GPG key ID: FD055E41728BF310
10 changed files with 10 additions and 71 deletions

View file

@ -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,