new file organization
[unix-history] / usr / src / usr.bin / f77 / libF77 / r_tan.c
/*
* "@(#)r_tan.c 1.1"
*/
double r_tan(x)
float *x;
{
double tan();
return( tan(*x) );
}