d_prod.c 207 B

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