source:
trunk/src/gcc/libf2c/libF77/d_log.c@
2
| Last change on this file since 2 was 2, checked in by , 23 years ago | |
|---|---|
|
|
| File size: 174 bytes | |
| Line | |
|---|---|
| 1 | #include "f2c.h" |
| 2 | |
| 3 | #ifdef KR_headers |
| 4 | double log(); |
| 5 | double d_log(x) doublereal *x; |
| 6 | #else |
| 7 | #undef abs |
| 8 | #include <math.h> |
| 9 | double d_log(doublereal *x) |
| 10 | #endif |
| 11 | { |
| 12 | return( log(*x) ); |
| 13 | } |
Note:
See TracBrowser
for help on using the repository browser.
