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