/*Copyright (C) 1992, 1996 by Thomas Glen Smith. All Rights Reserved.*/
/* negative APL2 V1.0.0 ************************************************
* Returns the argument reversed in sign. *
***********************************************************************/
#define INCLUDES 0
#include "includes.h"
double negative(rite)
double rite;
{
return(-rite);
}