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
* builtins.def: Break out _Complex math functions into their
[official-gcc.git]
/
libf2c
/
libF77
/
pow_dd.c
blob
0ab208ebf62ebacedd78564632f1876b4fa4fc4a
1
#include
"f2c.h"
2
3
#undef abs
4
#include <math.h>
5
double
6
pow_dd
(
doublereal
*
ap
,
doublereal
*
bp
)
7
{
8
return
(
pow
(*
ap
, *
bp
));
9
}