NAME
imax --- maximum of two integers
SYNOPSIS
444 static inline double imax(int x, int y)
INPUTS
x,y integers
OUTPUTS
max(x,y)
SOURCE
448 { 449 return x>y ? x : y; 450 }