V7M/src/libF77/d_sin.c

Compare this file to the similar file:
Show the results in this format:

double d_sin(x)
double *x;
{
double sin();
return( sin(*x) );
}