freebsd-dev/contrib/libf2c/libF77/d_prod.c

11 lines
140 B
C
Raw Normal View History

1999-09-18 10:51:31 +00:00
#include "f2c.h"
#ifdef KR_headers
double d_prod(x,y) real *x, *y;
#else
double d_prod(real *x, real *y)
#endif
{
return( (*x) * (*y) );
}