summaryrefslogtreecommitdiff
path: root/ext/gmp
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2006-06-16 00:14:35 +0000
committerfoobar <sniper@php.net>2006-06-16 00:14:35 +0000
commit4793980a8f3ea09a63dbb9ca2ec3b80c0c5abc38 (patch)
tree84d35668c3170cd4e7870c6e38861bca8a474a31 /ext/gmp
parent8ab6f3fd3979f20b020a46c4d3a89ad79a42a836 (diff)
downloadphp-git-4793980a8f3ea09a63dbb9ca2ec3b80c0c5abc38.tar.gz
Fix build. (gmp_nextprime() was added in PHP 6!)
Diffstat (limited to 'ext/gmp')
-rw-r--r--ext/gmp/gmp.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/gmp/gmp.c b/ext/gmp/gmp.c
index 4a96860a1d..963908e236 100644
--- a/ext/gmp/gmp.c
+++ b/ext/gmp/gmp.c
@@ -219,11 +219,6 @@ ZEND_BEGIN_ARG_INFO(arginfo_gmp_com, 0)
ZEND_END_ARG_INFO()
static
-ZEND_BEGIN_ARG_INFO(arginfo_gmp_nextprime, 0)
- ZEND_ARG_INFO(0, a)
-ZEND_END_ARG_INFO()
-
-static
ZEND_BEGIN_ARG_INFO(arginfo_gmp_xor, 0)
ZEND_ARG_INFO(0, a)
ZEND_ARG_INFO(0, b)
@@ -312,7 +307,6 @@ zend_function_entry gmp_functions[] = {
ZEND_FE(gmp_scan1, arginfo_gmp_scan1)
ZEND_FE(gmp_popcount, arginfo_gmp_popcount)
ZEND_FE(gmp_hamdist, arginfo_gmp_hamdist)
- ZEND_FE(gmp_nextprime, arginfo_gmp_nextprime)
{NULL, NULL, NULL} /* Must be the last line in gmp_functions[] */
};
/* }}} */