blob: 8a697e1aa21507460c6a62bf20b825e2419834e3 [file] [log] [blame]
#define _GNU_SOURCE
#include <math.h>
float significandf(float x)
{
return scalbnf(x, -ilogbf(x));
}