Metropoli BBS
VIEWER: intone.c MODE: TEXT (ASCII)
/* Copyright (C) 1994 by Thomas Glen Smith.  All Rights Reserved. */
/* intone APL2 V1.0.0 **************************************************
* Used when scalar dyadic "not equal" is applied to variables of       *
* incompatible data types, e.g. comparing character to integer, to     *
* produce a 1, indicating they are not equal.                          *
***********************************************************************/
#define INCLUDES 0
#include "includes.h"
void intone(left,rite,ret)
void *left,*rite;
int *ret;
{
	*ret = 1;
}

[ RETURN TO DIRECTORY ]