summaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authortadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-07-09 10:50:51 +0000
committertadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-07-09 10:50:51 +0000
commitbc11aa72d322c910bf898324f6f64f7b49cc92df (patch)
tree60a58f4504aef3de43a8aff92f8c55a5c231502a /internal.h
parent88b6d5050bfaa9f0677cc8db2ad98dc155d067b1 (diff)
* internal.h: added declarations.
* complex.c: followed the above change. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32475 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/internal.h b/internal.h
index 71c8ab6ca6..c495a7576f 100644
--- a/internal.h
+++ b/internal.h
@@ -110,7 +110,15 @@ VALUE rb_iseq_clone(VALUE iseqval, VALUE newcbase);
VALUE rb_get_load_path(void);
/* math.c */
+VALUE rb_math_atan2(VALUE, VALUE);
+VALUE rb_math_cos(VALUE);
+VALUE rb_math_cosh(VALUE);
+VALUE rb_math_exp(VALUE);
+VALUE rb_math_hypot(VALUE, VALUE);
VALUE rb_math_log(int argc, VALUE *argv);
+VALUE rb_math_sin(VALUE);
+VALUE rb_math_sinh(VALUE);
+VALUE rb_math_sqrt(VALUE);
/* newline.c */
void Init_newline(void);