Standard C library function/macro to return the smaller of two operands. May be written as #define MIN( a, b ) ((a) > (b)) ? (b) : (a)