date and time created 83/01/21 11:10:25 by dlw
[unix-history] / usr / src / usr.bin / f77 / libF77 / d_prod.c
/*
* "@(#)d_prod.c 1.1"
*/
double d_prod(x,y)
float *x, *y;
{
return( (*x) * (*y) );
}