Sign in
mojo
/
mojo-tools
/
30dc8f4319addf5007e721df37323717563ff8bf
/
.
/
fusl
/
src
/
math
/
significand.c
blob: e5d5bbe211ab094612c01f0d73378aadb2188fc6 [
file
]
#define
_GNU_SOURCE
#include
<math.h>
double
significand
(
double
x
)
{
return
scalbn
(
x
,
-
ilogb
(
x
));
}