Index: fusl/src/math/fabsl.c |
diff --git a/fusl/src/math/fabsl.c b/fusl/src/math/fabsl.c |
index c4f36ec2810ce50a7f7129800fbaf6f398139f5f..2af6eb92833cdc103cc6cfe47844d80f326b5d91 100644 |
--- a/fusl/src/math/fabsl.c |
+++ b/fusl/src/math/fabsl.c |
@@ -1,15 +1,13 @@ |
#include "libm.h" |
#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024 |
-long double fabsl(long double x) |
-{ |
- return fabs(x); |
+long double fabsl(long double x) { |
+ return fabs(x); |
} |
#elif (LDBL_MANT_DIG == 64 || LDBL_MANT_DIG == 113) && LDBL_MAX_EXP == 16384 |
-long double fabsl(long double x) |
-{ |
- union ldshape u = {x}; |
+long double fabsl(long double x) { |
+ union ldshape u = {x}; |
- u.i.se &= 0x7fff; |
- return u.f; |
+ u.i.se &= 0x7fff; |
+ return u.f; |
} |
#endif |