1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-02-15 20:02:10 +02:00

(MIN) [defined MIN]: Don't define, since it's already defined.

This commit is contained in:
Paul Eggert
2004-11-26 07:40:41 +00:00
parent cc08c826e9
commit da741f89bd

View 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 \