https://bugs.exim.org/show_bug.cgi?id=2016
Leonhard Knauff <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] | |e --- Comment #9 from Leonhard Knauff <[email protected]> --- Please, for very good old Solaris ;-) : can you add in "macros.h" like "MAX(a,b)" a definition for "MIN(a,b)": 18 /* Maximum of two items */ 19 #ifndef MAX 20 # define MAX(a,b) ((a) > (b) ? (a) : (b)) 21 #endif + /* Minimum of two items */ + #ifndef MIN + # define MIN(a,b) ((a) < (b) ? (a) : (b)) + #endif +++++++++++++++++++++++++++++++++++++ That means -- diff macros.h.489-2016 macros.h.489-2016-LK 21a22,25 > /* Minimum of two items */ > #ifndef MIN > # define MIN(a,b) ((a) < (b) ? (a) : (b)) > #endif Regards -- You are receiving this mail because: You are on the CC list for the bug. -- ## List details at https://lists.exim.org/mailman/listinfo/exim-dev Exim details at http://www.exim.org/ ##
