date and time created 83/01/21 11:10:54 by dlw
[unix-history] / usr / src / usr.bin / f77 / libF77 / d_prod.c
CommitLineData
20fabf78
DW
1/*
2 * "@(#)d_prod.c 1.1"
3 */
4
5double d_prod(x,y)
6float *x, *y;
7{
8return( (*x) * (*y) );
9}