Bell 32V development
[unix-history] / usr / src / libF77 / d_tan.c
double d_tan(x)
double *x;
{
double tan();
return( tan(*x) );
}