1
0
mirror of https://github.com/KolibriOS/kolibrios.git synced 2025-01-03 12:14:40 +03:00
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);}