diff options
Diffstat (limited to 'ext/odbc/php_odbc.c')
-rw-r--r-- | ext/odbc/php_odbc.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/odbc/php_odbc.c b/ext/odbc/php_odbc.c index 9dfd749870..366b7309c2 100644 --- a/ext/odbc/php_odbc.c +++ b/ext/odbc/php_odbc.c @@ -26,12 +26,16 @@ #include "php.h" #include "php_globals.h" + #include "ext/standard/info.h" + #include "ext/standard/php_string.h" #include "ext/standard/php_standard.h" + #include "php_odbc.h" #include "php_globals.h" + #if HAVE_UODBC #include <fcntl.h> @@ -112,7 +116,7 @@ function_entry odbc_functions[] = { }; zend_module_entry odbc_module_entry = { - "ODBC", + "odbc", odbc_functions, PHP_MINIT(odbc), PHP_MSHUTDOWN(odbc), |