5 lines
94 B
C
5 lines
94 B
C
|
extern double _sin();
|
||
|
double SIN(statlink, x)
|
||
|
int *statlink; double x;
|
||
|
{return(_sin(x));}
|