summaryrefslogtreecommitdiff
path: root/libf2c/libF77/d_log.c
blob: 50bbefd93c1734b30d139b22954049e617e03fe8 (plain)
1
2
3
4
5
6
7
8
#include "f2c.h"

#undef abs
#include <math.h>
double d_log(doublereal *x)
{
return( log(*x) );
}