Sign in
mojo
/
mojo
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
fusl
/
src
/
math
/
significandf.c
blob: 8a697e1aa21507460c6a62bf20b825e2419834e3 [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
#include
<math.h>
float
significandf
(
float
x
)
{
return
scalbnf
(
x
,
-
ilogbf
(
x
));
}