summaryrefslogtreecommitdiffstats
path: root/contrib/libf2c/libF77/r_lg10.c
blob: 563e73c4d8cdd21672f02834283272f70a8c7b95 (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
r_lg10 (real * x)
{
  return (log10e * log (*x));
}
OpenPOWER on IntegriCloud