mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 03:09:00 +08:00
11 lines
140 B
C
11 lines
140 B
C
|
#include "f2c.h"
|
||
|
|
||
|
#ifdef KR_headers
|
||
|
double d_prod(x,y) real *x, *y;
|
||
|
#else
|
||
|
double d_prod(real *x, real *y)
|
||
|
#endif
|
||
|
{
|
||
|
return( (*x) * (*y) );
|
||
|
}
|