/*Copyright (C) 1992, 1996 by Thomas Glen Smith. All Rights Reserved.*/
/* inegativ APL2 V1.0.0 ************************************************
* The integer equivalent of the negative function, inegative returns *
* returns the argument reversed in sign. *
***********************************************************************/
#define INCLUDES 0
#include "includes.h"
int inegativ(rite)
int rite;
{
return(-rite);
}