Metropoli BBS
VIEWER: iconjugp.c MODE: TEXT (ASCII)
/* Copyright (C) 1994 by Thomas Glen Smith.  All Rights Reserved. */
/* iconjugp APL2 V1.0.0 ************************************************
* Yields its integer argument unchanged.                               *
***********************************************************************/
#define INCLUDES 0
#include "includes.h"
void iconjugp(x,ret)
int *x,*ret;
{
	*ret = *x;
}
[ RETURN TO DIRECTORY ]