/* Copyright (C) 1994 by Thomas Glen Smith. All Rights Reserved. */ /* timesp APL2 V1.0.0 ************************************************** * Returns the double floating point product of its two arguments. * ***********************************************************************/ #define INCLUDES 0 #include "includes.h" void timesp(left,rite,ret) double *left,*rite,*ret; { *ret =(*left**rite); }