Undefine MIN and MAX before defining

Some systems (HPUX at least) already define MIN/MAX for us
This commit is contained in:
Neal Norwitz 2002-12-18 23:33:35 +00:00
parent 8feeabb975
commit 91787cb4b3

View file

@ -8,6 +8,8 @@
#include "opcode.h"
#include "structmember.h"
#undef MIN
#undef MAX
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define MAX(a, b) ((a) > (b) ? (a) : (b))