ack/lang/basic/lib/power.c
David Given d5f0107746 Build the Basic run-time library (after some modernisation).
--HG--
branch : dtrg-buildsystem
2013-05-14 16:11:29 +01:00

5 lines
76 B
C

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