diff options
Diffstat (limited to 'lib/msun/src/s_frexpf.c')
-rw-r--r-- | lib/msun/src/s_frexpf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/msun/src/s_frexpf.c b/lib/msun/src/s_frexpf.c index 823889a..1952836 100644 --- a/lib/msun/src/s_frexpf.c +++ b/lib/msun/src/s_frexpf.c @@ -23,7 +23,8 @@ static char rcsid[] = "$FreeBSD$"; static const float two25 = 3.3554432000e+07; /* 0x4c000000 */ - float frexpf(float x, int *eptr) +float +frexpf(float x, int *eptr) { int32_t hx,ix; GET_FLOAT_WORD(hx,x); |