Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
[mono.git] / mono / metadata / sysmath.h
1 /*\r
2  * math.h\r
3  *\r
4  * Author:\r
5  *   Dan Lewis (dihlewis@yahoo.co.uk)\r
6  *\r
7  * (C) Ximian, Inc. 2002\r
8  */\r
9 \r
10 #ifndef __METADATA_SYSMATH_H__\r
11 #define __METADATA_SYSMATH_H__\r
12 \r
13 #include <config.h>\r
14 #include <glib.h>\r
15 \r
16 extern gdouble \r
17 ves_icall_System_Math_Sin (gdouble x);\r
18 \r
19 extern gdouble \r
20 ves_icall_System_Math_Cos (gdouble x);\r
21 \r
22 extern gdouble \r
23 ves_icall_System_Math_Tan (gdouble x);\r
24 \r
25 extern gdouble \r
26 ves_icall_System_Math_Sinh (gdouble x);\r
27 \r
28 extern gdouble \r
29 ves_icall_System_Math_Cosh (gdouble x);\r
30 \r
31 extern gdouble \r
32 ves_icall_System_Math_Tanh (gdouble x);\r
33 \r
34 extern gdouble \r
35 ves_icall_System_Math_Acos (gdouble x);\r
36 \r
37 extern gdouble \r
38 ves_icall_System_Math_Asin (gdouble x);\r
39 \r
40 extern gdouble \r
41 ves_icall_System_Math_Atan (gdouble x);\r
42 \r
43 extern gdouble \r
44 ves_icall_System_Math_Atan2 (gdouble y, gdouble x);\r
45 \r
46 extern gdouble \r
47 ves_icall_System_Math_Exp (gdouble x);\r
48 \r
49 extern gdouble \r
50 ves_icall_System_Math_Log (gdouble x);\r
51 \r
52 extern gdouble \r
53 ves_icall_System_Math_Log10 (gdouble x);\r
54 \r
55 extern gdouble \r
56 ves_icall_System_Math_Pow (gdouble x, gdouble y);\r
57 \r
58 extern gdouble \r
59 ves_icall_System_Math_Sqrt (gdouble x);\r
60 \r
61 #endif\r