Standard C library function/macro which returns the greater of its two operands. Can be written as #define MAX( a, b ) ((a) > (b)) ? (a) : (b) It, has of course, an evil twin.