mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-01-01 19:24:24 +03:00
4 lines
89 B
C
4 lines
89 B
C
|
#include <math.h>
|
||
|
float frexpf (float x, int* expn)
|
||
|
{return (float)frexp(x, expn);}
|