]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - 6/contrib/libf2c/libF77/d_lg10.c
Clone Kip's Xen on stable/6 tree so that I can work on improving FreeBSD/amd64
[FreeBSD/FreeBSD.git] / 6 / contrib / libf2c / libF77 / d_lg10.c
1 #include "f2c.h"
2
3 #define log10e 0.43429448190325182765
4
5 #undef abs
6 #include <math.h>
7 double
8 d_lg10 (doublereal * x)
9 {
10   return (log10e * log (*x));
11 }