Sign in
gnu
/
gcc
/
d01fc6a3172f05d1618263450c1c9f13737acf57
/
.
/
libf2c
/
libF77
/
pow_dd.c
blob: 0ab208ebf62ebacedd78564632f1876b4fa4fc4a [
file
] [
log
] [
blame
]
#include
"f2c.h"
#undef
abs
#include
<math.h>
double
pow_dd
(
doublereal
*
ap
,
doublereal
*
bp
)
{
return
(
pow
(*
ap
,
*
bp
));
}