OSDN Git Service

Implement unit tests for power functions.
[mingw/mingw-org-wsl.git] / mingwrt / mingwex / math / powf.c
1 #include <math.h>
2 float powf (float x, float y)
3   {return (float) pow (x, y);}