/*Copyright (C) 1992, 1996 by Thomas Glen Smith. All Rights Reserved.*/
/* iminus APL2 V1.0.0 **************************************************
* Called by drop. The integer equivalent of the minus function. *
***********************************************************************/
#define INCLUDES 0
#include "includes.h"
int iminus(left,rite)
int left,rite;
{
return(left-rite);
}