add TLSDESC support for 32-bit arm
[musl.git] / src / math / significandf.c
blob8a697e1aa21507460c6a62bf20b825e2419834e3
1 #define _GNU_SOURCE
2 #include <math.h>
4 float significandf(float x)
6 return scalbnf(x, -ilogbf(x));