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