summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/gmp/gmp.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/gmp/gmp.c b/ext/gmp/gmp.c
index eb2e1009f7..aaed49bad1 100644
--- a/ext/gmp/gmp.c
+++ b/ext/gmp/gmp.c
@@ -133,9 +133,9 @@ static void gmp_efree(void *ptr, size_t size)
}
/* }}} */
-/* {{{ PHP_MINIT_FUNCTION
+/* {{{ ZEND_MINIT_FUNCTION
*/
-PHP_MINIT_FUNCTION(gmp)
+ZEND_MINIT_FUNCTION(gmp)
{
/* Remove comments if you have entries in php.ini
REGISTER_INI_ENTRIES();
@@ -153,9 +153,9 @@ PHP_MINIT_FUNCTION(gmp)
}
/* }}} */
-/* {{{ PHP_MSHUTDOWN_FUNCTION
+/* {{{ ZEND_MSHUTDOWN_FUNCTION
*/
-PHP_MSHUTDOWN_FUNCTION(gmp)
+ZEND_MSHUTDOWN_FUNCTION(gmp)
{
/* Remove comments if you have entries in php.ini
UNREGISTER_INI_ENTRIES();
@@ -164,9 +164,9 @@ PHP_MSHUTDOWN_FUNCTION(gmp)
}
/* }}} */
-/* {{{ PHP_MINFO_FUNCTION
+/* {{{ ZEND_MINFO_FUNCTION
*/
-PHP_MINFO_FUNCTION(gmp)
+ZEND_MINFO_FUNCTION(gmp)
{
php_info_print_table_start();
php_info_print_table_header(2, "gmp support", "enabled");