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