Commit 91787cb4 authored by Neal Norwitz's avatar Neal Norwitz

Undefine MIN and MAX before defining

Some systems (HPUX at least) already define MIN/MAX for us
parent 8feeabb9
......@@ -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))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment