]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(MIN) [defined MIN]: Don't define, since it's already defined.
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 26 Nov 2004 07:40:41 +0000 (07:40 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 26 Nov 2004 07:40:41 +0000 (07:40 +0000)
lib/same.c

index 33e13a01b73c7a98e238b910505cb9327e202a31..f018c62b6b33d7b8dd35c53b402e13a6977b92aa 100644 (file)
@@ -46,7 +46,9 @@
 #include "error.h"
 #include "xalloc.h"
 
-#define MIN(a, b) ((a) < (b) ? (a) : (b))
+#ifndef MIN
+# define MIN(a, b) ((a) < (b) ? (a) : (b))
+#endif
 
 #define SAME_INODE(Stat_buf_1, Stat_buf_2) \
   ((Stat_buf_1).st_ino == (Stat_buf_2).st_ino \