diff options
author | nsz <nsz@port70.net> | 2012-03-29 14:09:57 +0200 |
---|---|---|
committer | nsz <nsz@port70.net> | 2012-03-29 14:09:57 +0200 |
commit | 7eabe8e69044e3683376165934a17210b6b148b9 (patch) | |
tree | 8c5c8be0860bb475a8075c54fe6cb86124b2753e /src/math/floorl.c | |
parent | d79ac8c38f3992b4547d155f5c8e612f51d9b32e (diff) | |
download | musl-7eabe8e69044e3683376165934a17210b6b148b9.tar.gz musl-7eabe8e69044e3683376165934a17210b6b148b9.tar.xz musl-7eabe8e69044e3683376165934a17210b6b148b9.zip |
math: minor cleanups in ceil and floor
Diffstat (limited to 'src/math/floorl.c')
-rw-r--r-- | src/math/floorl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/floorl.c b/src/math/floorl.c index 08f6ba27..3901b060 100644 --- a/src/math/floorl.c +++ b/src/math/floorl.c @@ -97,6 +97,6 @@ long double floorl(long double x) if (huge + x > 0.0) u.bits.manl &= ~m; } - return (u.e); + return u.e; } #endif |