From: Paul Eggert Date: Fri, 26 Nov 2004 07:40:41 +0000 (+0000) Subject: (MIN) [defined MIN]: Don't define, since it's already defined. X-Git-Tag: v5.3.0~308 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da741f89bd5a4e4468346e074d142dfe9e1a2761;p=thirdparty%2Fcoreutils.git (MIN) [defined MIN]: Don't define, since it's already defined. --- diff --git a/lib/same.c b/lib/same.c index 33e13a01b7..f018c62b6b 100644 --- a/lib/same.c +++ b/lib/same.c @@ -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 \