FENIX_libc/math/pow.c

5 lines
79 B
C
Raw Permalink Normal View History

2022-10-27 13:57:08 +00:00
#include <math.h>
double pow(double x, double y) {
return exp(y * log(x));
}