summaryrefslogtreecommitdiff
path: root/ext/pdo_firebird/pdo_firebird.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pdo_firebird/pdo_firebird.c')
-rw-r--r--ext/pdo_firebird/pdo_firebird.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/ext/pdo_firebird/pdo_firebird.c b/ext/pdo_firebird/pdo_firebird.c
index 2af4b89724..e1a9bef643 100644
--- a/ext/pdo_firebird/pdo_firebird.c
+++ b/ext/pdo_firebird/pdo_firebird.c
@@ -26,11 +26,6 @@
#include "php_pdo_firebird.h"
#include "php_pdo_firebird_int.h"
-static const zend_function_entry pdo_firebird_functions[] = { /* {{{ */
- PHP_FE_END
-};
-/* }}} */
-
/* {{{ pdo_firebird_deps */
static const zend_module_dep pdo_firebird_deps[] = {
ZEND_MOD_REQUIRED("pdo")
@@ -42,7 +37,7 @@ zend_module_entry pdo_firebird_module_entry = { /* {{{ */
STANDARD_MODULE_HEADER_EX, NULL,
pdo_firebird_deps,
"PDO_Firebird",
- pdo_firebird_functions,
+ NULL,
PHP_MINIT(pdo_firebird),
PHP_MSHUTDOWN(pdo_firebird),
NULL,