summaryrefslogtreecommitdiffstats
path: root/contrib/libf2c/libF77/d_lg10.c
blob: d0f86e554d01db3f5111850d92b9b927e00a9da2 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "f2c.h"

#define log10e 0.43429448190325182765

#undef abs
#include <math.h>
double
d_lg10 (doublereal * x)
{
  return (log10e * log (*x));
}
OpenPOWER on IntegriCloud