xref: /haiku/src/system/libroot/posix/musl/math/significand.c (revision 6a2d53e7237764eab0c7b6d121772f26d636fb60)
1 #define _GNU_SOURCE
2 #include <math.h>
3 
4 double significand(double x)
5 {
6 	return scalbn(x, -ilogb(x));
7 }
8