mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 00:34:33 -05:00
7 lines
81 B
C
7 lines
81 B
C
#include "f2c.h"
|
|
|
|
double
|
|
d_prod (real * x, real * y)
|
|
{
|
|
return ((*x) * (*y));
|
|
}
|