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