diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2020-09-16 10:42:10 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-09-16 11:05:47 +0200 |
commit | f08e666e4b804ae87dc0e5978cb7207fd7fd7d94 (patch) | |
tree | d069606dea2d958fe17a27ba45104645dbc13856 | |
parent | f896b982cce6e458c78994c61aa13473e421b919 (diff) | |
download | php-git-f08e666e4b804ae87dc0e5978cb7207fd7fd7d94.tar.gz |
Remove unused GMP_ABS() macro
-rw-r--r-- | ext/gmp/gmp.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/gmp/gmp.c b/ext/gmp/gmp.c index 855513bf39..5cb4027d1e 100644 --- a/ext/gmp/gmp.c +++ b/ext/gmp/gmp.c @@ -33,7 +33,6 @@ /* Needed for gmp_random() */ #include "ext/standard/php_rand.h" #include "ext/standard/php_lcg.h" -#define GMP_ABS(x) ((x) >= 0 ? (x) : -(x)) ZEND_DECLARE_MODULE_GLOBALS(gmp) static ZEND_GINIT_FUNCTION(gmp); |