From: Nikita Popov Date: Wed, 16 Sep 2020 08:42:10 +0000 (+0200) Subject: Remove unused GMP_ABS() macro X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f08e666e4b804ae87dc0e5978cb7207fd7fd7d94;p=php Remove unused GMP_ABS() macro --- 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);