diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/math.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/math.h b/include/math.h index 15ad10331a..1dd1a1454a 100644 --- a/include/math.h +++ b/include/math.h @@ -29,8 +29,8 @@ extern int __isnanl_internal (long double __value) # undef isfinite # ifdef __NO_LONG_DOUBLE_MATH # define isfinite(x) \ - (sizeof (x) == (sizeof (float) \ - ? INTUSE(__finitef) (x) : INTUSE(__finite) (x))) + (sizeof (x) == sizeof (float) \ + ? INTUSE(__finitef) (x) : INTUSE(__finite) (x)) # else # define isfinite(x) \ (sizeof (x) == sizeof (float) \ |