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