home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / sharew / f_2_c / libf77 / d_prod.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-06-10  |  84 b   |  8 lines

  1. #include "f2c.h"
  2.  
  3. double d_prod(x,y)
  4. real *x, *y;
  5. {
  6. return( (*x) * (*y) );
  7. }
  8.