1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| | Don't override standard math function sincos.
--- a/source/cproj.c 2016-06-20 12:29:19.746105496 +0200
+++ b/source/cproj.c 2016-06-20 12:29:11.782083820 +0200
@@ -46,7 +46,7 @@
than calling each function separately. It is provided here for those
computer systems which don`t implement this function
----------------------------------------------------*/
-void sincos(val, sin_val, cos_val)
+/*void sincos(val, sin_val, cos_val)
double val;
double *sin_val;
double *cos_val;
@@ -54,7 +54,7 @@
*sin_val = sin(val);
*cos_val = cos(val);
return;
-}
+}*/
/* Function to eliminate roundoff errors in asin
----------------------------------------------*/
|