|
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
|
|---|
| 6 | double log();
|
|---|
| 7 | double r_lg10(x) real *x;
|
|---|
| 8 | #else
|
|---|
| 9 | #undef abs
|
|---|
| 10 | #include <math.h>
|
|---|
| 11 | double r_lg10(real *x)
|
|---|
| 12 | #endif
|
|---|
| 13 | {
|
|---|
| 14 | return( log10e * log(*x) );
|
|---|
| 15 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.