gcc/libf2c/libF77/d_prod.c

8 lines
81 B
C

#include "f2c.h"
double
d_prod (real * x, real * y)
{
return ((*x) * (*y));
}