projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
math: fix tgamma to raise underflow for large negative values
[oweals/musl.git]
/
src
/
math
/
significand.c
1
#define _GNU_SOURCE
2
#include <math.h>
3
4
double significand(double x)
5
{
6
return scalbn(x, -ilogb(x));
7
}