Sign in
mojo
/
mojo
/
17e3b04429ce6ad836128e1ceffefd85493ec779
/
.
/
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
));
}