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