repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix the use of uninitialized value in regcomp
[musl.git]
/
src
/
math
/
significand.c
blob
40d9aa9f4968de1be2b6101a89b5c6e6de8d12e5
1
#define _GNU_SOURCE
2
#include <math.h>
3
4
double
significand
(
double
x
)
5
{
6
return
scalbn
(
x
, -
ilogb
(
x
));
7
}