xref: /haiku/src/system/libroot/posix/musl/math/significandf.c (revision 652d5f6347ae220645c66f1ab1f3ef691f8b7dc3)
1 #define _GNU_SOURCE
2 #include <math.h>
3 
4 float significandf(float x)
5 {
6 	return scalbnf(x, -ilogbf(x));
7 }
8