Metropoli BBS
VIEWER: nomatchp.c MODE: TEXT (ASCII)
/* Copyright (C) 1994 by Thomas Glen Smith.  All Rights Reserved. */
/* nomatchp APL2 V1.0.0 ************************************************
* Used whenever the result is always int 0, regardless of what a and b *
* point to.                                                            *
***********************************************************************/
#define INCLUDES 0
#include "includes.h"
void nomatchp(a,b,ret)
void *a, *b, *ret;
{
	*(int *)ret = 0;
}
[ RETURN TO DIRECTORY ]