kolibrios/programs/develop/libraries/newlib/math/powf.c

4 lines
82 B
C
Raw Normal View History

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