From 15281f2e23d9a947626af5b64659520595bfd783 Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 17 Mar 1998 10:12:47 +0000 Subject: [PATCH] sqrt was missing git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@127 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- math.c | 1 + 1 file changed, 1 insertion(+) diff --git a/math.c b/math.c index e531e88ffe08f1..f03a009847d278 100644 --- a/math.c +++ b/math.c @@ -139,6 +139,7 @@ Init_Math() rb_define_module_function(mMath, "exp", math_exp, 1); rb_define_module_function(mMath, "log", math_log, 1); rb_define_module_function(mMath, "log10", math_log10, 1); + rb_define_module_function(mMath, "sqrt", math_sqrt, 1); rb_define_module_function(mMath, "frexp", math_frexp, 1); rb_define_module_function(mMath, "ldexp", math_ldexp, 2);