// // Copyright (C) 1996 Brian Murray // // You may distribute under the terms of the GNU General Public // License as specified in the COPYING file. // #ifndef _KR_MINMAX_H_ #define _KR_MINMAX_H_ #ifndef min #define min(x,y) ((x)<(y)?(x):(y)) #endif #ifndef max #define max(x,y) ((x)>(y)?(x):(y)) #endif #endif /* _KR_MINMAX_H_ */