4.2BSD/usr/src/usr.lib/libF77/pow_dd.c

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

/*
 *	"@(#)pow_dd.c	1.1"
 */

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

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