home *** CD-ROM | disk | FTP | other *** search
- /*
- oakint.c
-
- % int_min and int_max routines used by Oakland C-tools.
-
- OWL 1.1
- Copyright (c) 1986, 1987, by Oakland Group, Inc.
- ALL RIGHTS RESERVED.
-
- Revision History:
- -----------------
- */
-
- #include "oakhead.h"
-
- int int_max(a, b)
- int a, b;
- {
- return( (a > b) ? a : b );
- }
-
- int int_min(a, b)
- int a, b;
- {
- return( (a <= b) ? a : b);
- }
-
-