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