09c656ca68
Obtained from: netlib.att.com
14 lines
162 B
C
14 lines
162 B
C
#include "f2c.h"
|
|
|
|
#ifdef KR_headers
|
|
double log();
|
|
double r_log(x) real *x;
|
|
#else
|
|
#undef abs
|
|
#include "math.h"
|
|
double r_log(real *x)
|
|
#endif
|
|
{
|
|
return( log(*x) );
|
|
}
|