ack/lang/fortran/lib/libF77/d_prod.c

8 lines
77 B
C
Raw Normal View History

1991-10-07 16:59:33 +00:00
#include "f2c.h"
double d_prod(x,y)
real *x, *y;
{
return( (*x) * (*y) );
}