https://bugs.exim.org/show_bug.cgi?id=2016
Leonhard Knauff <lk@???> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |lk@???
| |e
--- Comment #9 from Leonhard Knauff <lk@???> ---
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.