mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-19 10:53:58 +00:00
12 lines
145 B
C
12 lines
145 B
C
#include "f2c.h"
|
|
|
|
#define log10e 0.43429448190325182765
|
|
|
|
#undef abs
|
|
#include <math.h>
|
|
double
|
|
r_lg10 (real * x)
|
|
{
|
|
return (log10e * log (*x));
|
|
}
|