Welcome to mirror list, hosted at ThFree Co, Russian Federation.

powf.c « math « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1af4d2d8fb4132bf4521fe345fe0bcc364c45561 (plain)
1
2
3
#include <math.h>
float powf (float x, float y)
  {return (float) pow (x, y);}