mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-12 18:07:06 +03:00
af35cc6783
git-svn-id: svn://kolibrios.org@6424 a494cfbc-eb01-0410-851d-a64ba20cac60
7 lines
87 B
C
7 lines
87 B
C
#include <math.h>
|
|
|
|
double pow(double x, double y)
|
|
{
|
|
return exp(y * log(x));
|
|
}
|