Working towards better make dist
[cacao.git] / nat / Math.h
1 /* This file is machine generated, don't edit it !*/
2
3 /* Structure information for class: java/lang/Math */
4
5 typedef struct java_lang_Math {
6    java_objectheader header;
7 } java_lang_Math;
8
9 /*
10  * Class:     java/lang/Math
11  * Method:    IEEEremainder
12  * Signature: (DD)D
13  */
14 JNIEXPORT double JNICALL Java_java_lang_Math_IEEEremainder (JNIEnv *env , double par1, double par2);
15 /*
16  * Class:     java/lang/Math
17  * Method:    acos
18  * Signature: (D)D
19  */
20 JNIEXPORT double JNICALL Java_java_lang_Math_acos (JNIEnv *env , double par1);
21 /*
22  * Class:     java/lang/Math
23  * Method:    asin
24  * Signature: (D)D
25  */
26 JNIEXPORT double JNICALL Java_java_lang_Math_asin (JNIEnv *env , double par1);
27 /*
28  * Class:     java/lang/Math
29  * Method:    atan
30  * Signature: (D)D
31  */
32 JNIEXPORT double JNICALL Java_java_lang_Math_atan (JNIEnv *env , double par1);
33 /*
34  * Class:     java/lang/Math
35  * Method:    atan2
36  * Signature: (DD)D
37  */
38 JNIEXPORT double JNICALL Java_java_lang_Math_atan2 (JNIEnv *env , double par1, double par2);
39 /*
40  * Class:     java/lang/Math
41  * Method:    ceil
42  * Signature: (D)D
43  */
44 JNIEXPORT double JNICALL Java_java_lang_Math_ceil (JNIEnv *env , double par1);
45 /*
46  * Class:     java/lang/Math
47  * Method:    cos
48  * Signature: (D)D
49  */
50 JNIEXPORT double JNICALL Java_java_lang_Math_cos (JNIEnv *env , double par1);
51 /*
52  * Class:     java/lang/Math
53  * Method:    exp
54  * Signature: (D)D
55  */
56 JNIEXPORT double JNICALL Java_java_lang_Math_exp (JNIEnv *env , double par1);
57 /*
58  * Class:     java/lang/Math
59  * Method:    floor
60  * Signature: (D)D
61  */
62 JNIEXPORT double JNICALL Java_java_lang_Math_floor (JNIEnv *env , double par1);
63 /*
64  * Class:     java/lang/Math
65  * Method:    log
66  * Signature: (D)D
67  */
68 JNIEXPORT double JNICALL Java_java_lang_Math_log (JNIEnv *env , double par1);
69 /*
70  * Class:     java/lang/Math
71  * Method:    pow
72  * Signature: (DD)D
73  */
74 JNIEXPORT double JNICALL Java_java_lang_Math_pow (JNIEnv *env , double par1, double par2);
75 /*
76  * Class:     java/lang/Math
77  * Method:    rint
78  * Signature: (D)D
79  */
80 JNIEXPORT double JNICALL Java_java_lang_Math_rint (JNIEnv *env , double par1);
81 /*
82  * Class:     java/lang/Math
83  * Method:    sin
84  * Signature: (D)D
85  */
86 JNIEXPORT double JNICALL Java_java_lang_Math_sin (JNIEnv *env , double par1);
87 /*
88  * Class:     java/lang/Math
89  * Method:    sqrt
90  * Signature: (D)D
91  */
92 JNIEXPORT double JNICALL Java_java_lang_Math_sqrt (JNIEnv *env , double par1);
93 /*
94  * Class:     java/lang/Math
95  * Method:    tan
96  * Signature: (D)D
97  */
98 JNIEXPORT double JNICALL Java_java_lang_Math_tan (JNIEnv *env , double par1);