avoid redefined

This commit is contained in:
Michael Jerris 2014-02-21 16:36:30 -05:00
parent bfad336592
commit b3242541b2

View File

@ -12,8 +12,12 @@
#include "util.h"
#ifndef MIN
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#endif
#ifndef MAX
#define MAX(a,b) ((a) > (b) ? (a) : (b))
#endif
/* When we deallocate a pointer in a struct, we often replace it with
** this and throw in a few assertions here and there. */