diff options
author | Stanislav Malyshev <stas@php.net> | 2001-06-06 17:52:03 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2001-06-06 17:52:03 +0000 |
commit | 02b369e3a6ae2dd07434e9ed32c2a36e2220c145 (patch) | |
tree | 5de96c6a6c2a431a6aa2a063ec6b34f3c5ada799 /ext/gmp/gmp.c | |
parent | 127f827f76aa36d898bed55de157d5ad38425e54 (diff) | |
download | php-git-02b369e3a6ae2dd07434e9ed32c2a36e2220c145.tar.gz |
Make gmp compile again
Diffstat (limited to 'ext/gmp/gmp.c')
-rw-r--r-- | ext/gmp/gmp.c | 12 |
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"); |