Files
cosmopolitan/libc/math/significandf.c
Justine Tunney c91b3c5006 Initial import
2020-06-15 07:18:57 -07:00

8 lines
113 B
C

#define _GNU_SOURCE
#include "libc/math/math.h"
float significandf(float x)
{
return scalbnf(x, -ilogbf(x));
}