From 1361e98d5602e8b78cca019952d4a3438d68a239 Mon Sep 17 00:00:00 2001 From: "Gabriel F. T. Gomes" Date: Fri, 31 Mar 2017 09:31:10 -0300 Subject: Fix condition for inclusion of math-finite.h for long double The condition for declaration of long double functions in math-finite.h was #ifdef __MATH_DECLARE_LDOUBLE before the macroization of this file. After the macroization, it was incorreclty changed to #if __MATH_DECLARE_LDOUBLE, which broke the build for arm. * math/math.h: Fix check for __MATH_DECLARE_LDOUBLE. * math/bits/math-finite.h: Likewise. --- math/bits/math-finite.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'math/bits') diff --git a/math/bits/math-finite.h b/math/bits/math-finite.h index 59cd06b866..29f2f2ed43 100644 --- a/math/bits/math-finite.h +++ b/math/bits/math-finite.h @@ -177,7 +177,7 @@ __MATH_REDIRCALL (remainder, , (_Mdouble_, _Mdouble_)); #if (__MATH_DECLARING_DOUBLE \ && (defined __USE_MISC \ || (defined __USE_XOPEN_EXTENDED && !defined __USE_XOPEN2K8))) \ - || (!__MATH_DECLARE_LDOUBLE && defined __USE_MISC) + || (!defined __MATH_DECLARE_LDOUBLE && defined __USE_MISC) /* scalb. */ __MATH_REDIRCALL (scalb, , (_Mdouble_, _Mdouble_)); #endif -- cgit 1.4.1