Commit b6d29b78 authored by Guido van Rossum's avatar Guido van Rossum

Undef MIN and MAX before defining them, to avoid warnings on certain

platforms.
parent a4b4c3bf
......@@ -2003,6 +2003,8 @@ lshift_error:
/* Bitwise and/xor/or operations */
#undef MIN
#undef MAX
#define MAX(x, y) ((x) < (y) ? (y) : (x))
#define MIN(x, y) ((x) > (y) ? (y) : (x))
......
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