DEBSOURCES
Skip Quicknav
sources / scilab / 4.1.2-6 / routines / f2c / libf2c / d_prod.c
12345678910
#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) ); }