summaryrefslogtreecommitdiffstats
path: root/winsup/mingw/mingwex/math/powf.c
blob: 1af4d2d8fb4132bf4521fe345fe0bcc364c45561 (plain)
1
2
3
#include <math.h>
float powf (float x, float y)
  {return (float) pow (x, y);}