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