add ISC_MIN() and ISC_MAX()

This commit is contained in:
Michael Graff 1999-06-08 02:38:21 +00:00
parent 60804eec9b
commit 47d1506e95

View file

@ -24,6 +24,9 @@
*** General Macros.
***/
#define ISC_MAX(a, b) ((a) > (b) ? (a) : (b))
#define ISC_MIN(a, b) ((a) < (b) ? (a) : (b))
/*
* We use macros instead of calling the routines directly because
* the capital letters make the locking stand out.