date and time created 83/01/21 11:19:18 by dlw
[unix-history] / usr / src / usr.bin / f77 / libF77 / r_log.c
CommitLineData
db43a9bf
DW
1/*
2 * "@(#)r_log.c 1.1"
3 */
4
5double r_log(x)
6float *x;
7{
8double log();
9return( log(*x) );
10}