1 #ifndef INTERNAL_MATH_H /*-*-C-*-vi:se ft=c:*/
2 #define INTERNAL_MATH_H
4 * @author Ruby developers <ruby-core@ruby-lang.org>
5 * @copyright This file is a part of the programming language Ruby.
6 * Permission is hereby granted, to either redistribute and/or
7 * modify this file, provided that the conditions mentioned in the
8 * file COPYING are met. Consult the file for details.
9 * @brief Internal header for Math.
11 #include "ruby/ruby.h" /* for VALUE */
14 VALUE
rb_math_atan2(VALUE
, VALUE
);
15 VALUE
rb_math_cos(VALUE
);
16 VALUE
rb_math_cosh(VALUE
);
17 VALUE
rb_math_exp(VALUE
);
18 VALUE
rb_math_hypot(VALUE
, VALUE
);
19 VALUE
rb_math_log(int argc
, const VALUE
*argv
);
20 VALUE
rb_math_sin(VALUE
);
21 VALUE
rb_math_sinh(VALUE
);
23 #endif /* INTERNAL_MATH_H */