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

4 lines
79 B
C

#include <math.h>
float powf (float x, float y)
{return (float) pow (x, y);}