From f08e666e4b804ae87dc0e5978cb7207fd7fd7d94 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Wed, 16 Sep 2020 10:42:10 +0200 Subject: [PATCH] Remove unused GMP_ABS() macro --- ext/gmp/gmp.c | 1 - 1 file changed, 1 deletion(-) 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); -- 2.40.0