aboutsummaryrefslogtreecommitdiff
path: root/libf2c/libF77/r_log.c
blob: eaaecc836f263f2428ff94771ca495a3820cb4c5 (plain)
1
2
3
4
5
6
7
8
9
#include "f2c.h"

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