]> granicus.if.org Git - sudo/commitdiff
avoid redefining the MIN macro
authorTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 13 Feb 2017 22:03:57 +0000 (15:03 -0700)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 13 Feb 2017 22:03:57 +0000 (15:03 -0700)
lib/zlib/deflate.c

index 1ec761448de926724c359256bbff0e8d9e851415..1e39dcbaeba258c2334af2ac389d84115cb96455 100644 (file)
@@ -1623,7 +1623,9 @@ local void fill_window(s)
 #define MAX_STORED 65535
 
 /* Minimum of a and b. */
+#ifndef MIN
 #define MIN(a, b) ((a) > (b) ? (b) : (a))
+#endif
 
 /* ===========================================================================
  * Copy without compression as much as possible from the input stream, return