kolibrios/programs/develop/libraries/newlib/math/frexpf.c

4 lines
89 B
C
Raw Normal View History

#include <math.h>
float frexpf (float x, int* expn)
{return (float)frexp(x, expn);}