V7M/src/libF77/pow_dd.c

Compare this file to the similar file:
Show the results in this format:

double pow_dd(ap, bp)
double *ap, *bp;
{
double pow();

return(pow(*ap, *bp) );
}