date and time created 83/01/21 11:10:54 by dlw
[unix-history] / usr / src / usr.bin / f77 / libF77 / d_tan.c
/*
* "@(#)d_tan.c 1.1"
*/
double d_tan(x)
double *x;
{
double tan();
return( tan(*x) );
}