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