blob: f9f348b03dd13cab9fe18fa3ff8b89fdfd295061 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "f2c.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef KR_headers
double d_prod(x,y) real *x, *y;
#else
double d_prod(real *x, real *y)
#endif
{
return( (*x) * (*y) );
}
#ifdef __cplusplus
}
#endif
|