1 /*
2  * Copyright (c) 1994 William F. Jolitz.
3  * 386BSD Copyright Restrictions Apply. All Other Rights Reserved.
4  *
5  * $Id: $
6  * Integer maximum function.
7  */
8 __INLINE int
imax(int a,int b)9 imax(int a, int b)
10 {
11 	return ((a > b) ? a : b);
12 }
13