source: trunk/src/gcc/libf2c/libF77/r_lg10.c@ 645

Last change on this file since 645 was 2, checked in by bird, 23 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 212 bytes
Line 
1#include "f2c.h"
2
3#define log10e 0.43429448190325182765
4
5#ifdef KR_headers
6double log();
7double r_lg10(x) real *x;
8#else
9#undef abs
10#include <math.h>
11double r_lg10(real *x)
12#endif
13{
14return( log10e * log(*x) );
15}
Note: See TracBrowser for help on using the repository browser.