Files
seta75D 2e8a93c394 Init
2021-10-11 18:20:23 -03:00

12 lines
165 B
C

#ifndef lint
static char sccsid[] = "@(#)d_prod.c 1.1 92/07/30 SMI"; /* from UCB 1.1" */
#endif
/*
*/
double d_prod(x,y)
float *x, *y;
{
return( (*x) * (*y) );
}