From: Peter Michael Green Date: Tue, 21 Dec 2021 17:35:22 +0000 (+0000) Subject: Use a #define instead of a typedef for double_t in fdlibm to prevent conflicting... X-Git-Tag: archive/raspbian/115.15.0esr-1_deb12u1+rpi1~5 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=88ab1219937545dc1c72e231ec7c6eaf368228ae;p=firefox-esr.git Use a #define instead of a typedef for double_t in fdlibm to prevent conflicting definitions error Gbp-Pq: Name use-a-define-instead-of-a-typedef-for-do.patch --- diff --git a/modules/fdlibm/src/math_private.h b/modules/fdlibm/src/math_private.h index 632d2c4c619..b7fecb02e58 100644 --- a/modules/fdlibm/src/math_private.h +++ b/modules/fdlibm/src/math_private.h @@ -35,7 +35,7 @@ typedef long double __double_t; #else typedef double __double_t; #endif -typedef __double_t double_t; +#define double_t __double_t typedef float __float_t; /*