repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* config/netbsd.h (CPP_SPEC): Remove.
[official-gcc.git]
/
libf2c
/
libF77
/
d_log.c
blob
592015b28212ec984c5b3dbbd26d30b196d8da89
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
}