diff --git a/util.h b/util.h index 83ca8e4..c3ca8a7 100644 --- a/util.h +++ b/util.h @@ -5,7 +5,9 @@ #define UTF8_POINT(c) (((c) & 0xc0) != 0x80) +#undef MIN #define MIN(x,y) ((x) < (y) ? (x) : (y)) +#undef MAX #define MAX(x,y) ((x) > (y) ? (x) : (y)) #define LEN(x) (sizeof (x) / sizeof *(x))