newlib/winsup/mingw/mingwex/math/ldexpf.c

4 lines
87 B
C

#include <math.h>
float ldexpf (float x, int expn)
{return (float) ldexp (x, expn);}