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