FENIX_libc/math/pow.c
2022-10-27 08:57:08 -05:00

5 lines
79 B
C

#include <math.h>
double pow(double x, double y) {
return exp(y * log(x));
}