ack/lang/basic/lib/power.c
2018-06-24 00:35:51 +02:00

5 lines
92 B
C

#include <math.h>
#include "lib.h"
double _power(double x, double y) { return pow(x, y); }