/*
 *	"@(#)r_tan.c	1.1"
 */

double r_tan(x)
float *x;
{
double tan();
return( tan(*x) );
}
