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