syscons util remove use kbdcontrol & vidcontrol instead
[unix-history] / lib / libF77 / d_lg10.c
CommitLineData
547779a8
WH
1#include "f2c.h"
2
3#define log10e 0.43429448190325182765
4
5#ifdef KR_headers
6double log();
7double d_lg10(x) doublereal *x;
8#else
9#undef abs
10#include "math.h"
11double d_lg10(doublereal *x)
12#endif
13{
14return( log10e * log(*x) );
15}