/*Copyright (C) 1992, 1996 by Thomas Glen Smith. All Rights Reserved.*/
/* inot APL2 V1.0.0 ****************************************************
* Returns an integer 1 or 0 depending on the logical NOT of rite. *
***********************************************************************/
#define INCLUDES 0
#include "includes.h"
int inot(rite)
int rite;
{
return((rite == 0));
}