8 lines
77 B
C
8 lines
77 B
C
#include "f2c.h"
|
|
|
|
double d_prod(x,y)
|
|
real *x, *y;
|
|
{
|
|
return( (*x) * (*y) );
|
|
}
|