summaryrefslogtreecommitdiff
path: root/libf2c/libF77/d_prod.c
blob: b39580fa502ec99fee7f32fdc4d27ad0aba77ed6 (plain)
1
2
3
4
5
6
#include "f2c.h"

double d_prod(real *x, real *y)
{
return( (*x) * (*y) );
}