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