cantera/ext/f2c_libs/d_prod.c
2012-02-03 23:41:00 +00:00

16 lines
207 B
C

#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