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