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