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