1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-20 15:43:16 +00:00
freebsd/contrib/libf2c/libF77/d_prod.c
2003-07-11 03:42:19 +00:00

8 lines
81 B
C

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