From 11ca2b408da2c2493cee813d92efd9c751e9f070 Mon Sep 17 00:00:00 2001 From: sin Date: Wed, 22 Oct 2014 17:41:16 +0100 Subject: [PATCH] Some systems define this already. --- noice.c | 1 + 1 file changed, 1 insertion(+) diff --git a/noice.c b/noice.c index 3019dada..e4f86a03 100644 --- a/noice.c +++ b/noice.c @@ -33,6 +33,7 @@ #endif /* DEBUG */ #define LEN(x) (sizeof(x) / sizeof(*(x))) +#undef MIN #define MIN(x, y) ((x) < (y) ? (x) : (y)) #define ISODD(x) ((x) & 1) #define CONTROL(c) ((c) ^ 0x40)