#include <sys/cdefs.h>
#if defined(LIBM_SCCS) && !defined(lint)
__RCSID("$NetBSD: s_modff.c,v 1.9 2010/01/27 14:07:41 drochner Exp $");
#endif
#include "math.h"
#include "math_private.h"
static const float one = 1.0;
float
modff(float x, float *iptr)
{
int32_t i0,jj0;
u_int32_t i;
GET_FLOAT_WORD(i0,x);
jj0 = ((i0>>23)&0xff)-0x7f;
if(jj0<23) {
if(jj0<0) {
SET_FLOAT_WORD(*iptr,i0&0x80000000);
return x;
} else {
i = (0x007fffff)>>jj0;
if((i0&i)==0) {
u_int32_t ix;
*iptr = x;
GET_FLOAT_WORD(ix,x);
SET_FLOAT_WORD(x,ix&0x80000000);
return x;
} else {
SET_FLOAT_WORD(*iptr,i0&(~i));
return x - *iptr;
}
}
} else {
u_int32_t ix;
*iptr = x*one;
if (jj0 == 0x80)
return 0.0 / x;
GET_FLOAT_WORD(ix,x);
SET_FLOAT_WORD(x,ix&0x80000000);
return x;
}
}