diff options
| author | Nikita Popov <nikic@php.net> | 2013-11-28 23:42:23 +0100 |
|---|---|---|
| committer | Nikita Popov <nikic@php.net> | 2013-11-29 00:01:59 +0100 |
| commit | 6d38090c8d1a47844c854a73b57518fb2a7c10a8 (patch) | |
| tree | e06e717063908946a2f74ad65ad9b2b72e2e4243 /ext/gmp/php_gmp.h | |
| parent | 1c8cbe4b4e8e373b37c740b7d96e4beb96414ea0 (diff) | |
| download | php-git-6d38090c8d1a47844c854a73b57518fb2a7c10a8.tar.gz | |
Add gmp_root() and gmp_rootrem() functions
Diffstat (limited to 'ext/gmp/php_gmp.h')
| -rw-r--r-- | ext/gmp/php_gmp.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/gmp/php_gmp.h b/ext/gmp/php_gmp.h index e1aaef886d..902c3ac0bb 100644 --- a/ext/gmp/php_gmp.h +++ b/ext/gmp/php_gmp.h @@ -45,9 +45,11 @@ ZEND_FUNCTION(gmp_neg); ZEND_FUNCTION(gmp_abs); ZEND_FUNCTION(gmp_fact); ZEND_FUNCTION(gmp_sqrt); +ZEND_FUNCTION(gmp_sqrtrem); +ZEND_FUNCTION(gmp_root); +ZEND_FUNCTION(gmp_rootrem); ZEND_FUNCTION(gmp_pow); ZEND_FUNCTION(gmp_powm); -ZEND_FUNCTION(gmp_sqrtrem); ZEND_FUNCTION(gmp_perfect_square); ZEND_FUNCTION(gmp_prob_prime); ZEND_FUNCTION(gmp_gcd); |
