forked from KolibriOS/kolibrios
release ktcc 0.9.26
git-svn-id: svn://kolibrios.org@6424 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
6
programs/develop/ktcc/trunk/libc/math/pow.c
Normal file
6
programs/develop/ktcc/trunk/libc/math/pow.c
Normal file
@@ -0,0 +1,6 @@
|
||||
#include <math.h>
|
||||
|
||||
double pow(double x, double y)
|
||||
{
|
||||
return exp(y * log(x));
|
||||
}
|
Reference in New Issue
Block a user