mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-01-03 12:14:40 +03:00
4 lines
82 B
C
4 lines
82 B
C
|
#include <math.h>
|
||
|
float powf (float x, float y)
|
||
|
{return (float) pow (x, y);}
|