/*Copyright (C) 1992, 1996 by Thomas Glen Smith. All Rights Reserved.*/
/* imax APL2 V1.0.0 ****************************************************
* The integer equivalent of max. *
***********************************************************************/
#define INCLUDES 0
#include "includes.h"
int imax(a,b)
int a,b;
{
return((a>b) ? a : b);
}