mirror of
https://github.com/status-im/status-go.git
synced 2025-01-14 00:36:40 +00:00
8 lines
103 B
C
8 lines
103 B
C
|
#define _GNU_SOURCE
|
||
|
#include <math.h>
|
||
|
|
||
|
float significandf(float x)
|
||
|
{
|
||
|
return scalbnf(x, -ilogbf(x));
|
||
|
}
|