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

double r_log(x)
float *x;
{
double log();
return( log(*x) );
}
