From 4f4d6b5675f893db168eecf3d0eec65c1277adcc Mon Sep 17 00:00:00 2001 From: Jeff Teunissen Date: Fri, 9 Dec 2011 22:42:43 -0500 Subject: [PATCH] OK, now import them... Duh. --- ruamoko/lib/math.r | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ruamoko/lib/math.r b/ruamoko/lib/math.r index 59a76bbc2..8d0c51342 100644 --- a/ruamoko/lib/math.r +++ b/ruamoko/lib/math.r @@ -22,6 +22,7 @@ float (float x) acos = #0; float (float x) atan = #0; float (float y, float x) atan2 = #0; float (float x) log = #0; +float (float x) log2 = #0; float (float x) log10 = #0; float (float x, float y) pow = #0; float (float x) sinh = #0; @@ -30,3 +31,6 @@ float (float x) tanh = #0; float (float x) asinh = #0; float (float x) acosh = #0; float (float x) atanh = #0; +float (float x) sqrt = #0; +float (float x) cbrt = #0; +float (float x, float y) hypot = #0;