diff options
Diffstat (limited to 'ext/pdo_mysql/pdo_mysql.c')
-rw-r--r-- | ext/pdo_mysql/pdo_mysql.c | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/ext/pdo_mysql/pdo_mysql.c b/ext/pdo_mysql/pdo_mysql.c index 1821e247ae..f3310cde41 100644 --- a/ext/pdo_mysql/pdo_mysql.c +++ b/ext/pdo_mysql/pdo_mysql.c @@ -85,8 +85,7 @@ static const MYSQLND_REVERSE_API pdo_mysql_reverse_api = { #endif -/* {{{ PHP_INI_BEGIN -*/ +/* {{{ PHP_INI_BEGIN */ PHP_INI_BEGIN() #ifndef PHP_WIN32 STD_PHP_INI_ENTRY("pdo_mysql.default_socket", PDO_MYSQL_UNIX_ADDR, PHP_INI_SYSTEM, OnUpdateStringUnempty, default_socket, zend_pdo_mysql_globals, pdo_mysql_globals) @@ -99,8 +98,7 @@ PHP_INI_END() /* true global environment */ -/* {{{ PHP_MINIT_FUNCTION - */ +/* {{{ PHP_MINIT_FUNCTION */ static PHP_MINIT_FUNCTION(pdo_mysql) { REGISTER_INI_ENTRIES(); @@ -138,8 +136,7 @@ static PHP_MINIT_FUNCTION(pdo_mysql) } /* }}} */ -/* {{{ PHP_MSHUTDOWN_FUNCTION - */ +/* {{{ PHP_MSHUTDOWN_FUNCTION */ static PHP_MSHUTDOWN_FUNCTION(pdo_mysql) { php_pdo_unregister_driver(&pdo_mysql_driver); @@ -151,8 +148,7 @@ static PHP_MSHUTDOWN_FUNCTION(pdo_mysql) } /* }}} */ -/* {{{ PHP_MINFO_FUNCTION - */ +/* {{{ PHP_MINFO_FUNCTION */ static PHP_MINFO_FUNCTION(pdo_mysql) { php_info_print_table_start(); @@ -170,8 +166,7 @@ static PHP_MINFO_FUNCTION(pdo_mysql) #if defined(PDO_USE_MYSQLND) && PDO_DBG_ENABLED -/* {{{ PHP_RINIT_FUNCTION - */ +/* {{{ PHP_RINIT_FUNCTION */ static PHP_RINIT_FUNCTION(pdo_mysql) { if (PDO_MYSQL_G(debug)) { @@ -187,8 +182,7 @@ static PHP_RINIT_FUNCTION(pdo_mysql) } /* }}} */ -/* {{{ PHP_RSHUTDOWN_FUNCTION - */ +/* {{{ PHP_RSHUTDOWN_FUNCTION */ static PHP_RSHUTDOWN_FUNCTION(pdo_mysql) { MYSQLND_DEBUG *dbg = PDO_MYSQL_G(dbg); @@ -204,8 +198,7 @@ static PHP_RSHUTDOWN_FUNCTION(pdo_mysql) /* }}} */ #endif -/* {{{ PHP_GINIT_FUNCTION - */ +/* {{{ PHP_GINIT_FUNCTION */ static PHP_GINIT_FUNCTION(pdo_mysql) { #if defined(COMPILE_DL_PDO_MYSQL) && defined(ZTS) |