X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fmodff.c;h=639514effafcc91997d53f4b8528e16b21440a9e;hb=8041af59881219c32267c3491bee43591d3c3fe6;hp=84d0b82a56250bc36e9ee7083f9f179e3e5ad90a;hpb=f6ceccd92247575e4a35bc94f581a570b8052d43;p=musl diff --git a/src/math/modff.c b/src/math/modff.c index 84d0b82a..639514ef 100644 --- a/src/math/modff.c +++ b/src/math/modff.c @@ -1,37 +1,34 @@ -#include -#include +#include "libm.h" float modff(float x, float *iptr) { - union {float x; uint32_t n;} u = {x}; + union {float f; uint32_t i;} u = {x}; uint32_t mask; - int e; - - e = (int)(u.n>>23 & 0xff) - 0x7f; + int e = (int)(u.i>>23 & 0xff) - 0x7f; /* no fractional part */ if (e >= 23) { *iptr = x; - if (e == 0x80 && u.n<<9 != 0) { /* nan */ + if (e == 0x80 && u.i<<9 != 0) { /* nan */ return x; } - u.n &= 0x80000000; - return u.x; + u.i &= 0x80000000; + return u.f; } /* no integral part */ if (e < 0) { - u.n &= 0x80000000; - *iptr = u.x; + u.i &= 0x80000000; + *iptr = u.f; return x; } mask = 0x007fffff>>e; - if ((u.n & mask) == 0) { + if ((u.i & mask) == 0) { *iptr = x; - u.n &= 0x80000000; - return u.x; + u.i &= 0x80000000; + return u.f; } - u.n &= ~mask; - *iptr = u.x; - return x - *iptr; + u.i &= ~mask; + *iptr = u.f; + return x - u.f; }