Undef MIN/MAX in case they are defined somewhere else

This commit is contained in:
sin 2014-11-13 15:27:54 +00:00
parent 7ffe164106
commit 49c91462b3
1 changed files with 2 additions and 0 deletions

2
util.h
View File

@ -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))