Skip to content

Commit

Permalink
sqrt was missing
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@127 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
matz committed Mar 17, 1998
1 parent 4c3d81d commit 15281f2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions math.c
Expand Up @@ -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);
Expand Down

0 comments on commit 15281f2

Please sign in to comment.