math: move x86_64 exp2l implementation to exp2l.s from expl.s
[musl] / 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 }