summaryrefslogtreecommitdiffstats
path: root/Objects/longobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/longobject.c')
-rw-r--r--Objects/longobject.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c
index 89fc8b4..7f94a62 100644
--- a/Objects/longobject.c
+++ b/Objects/longobject.c
@@ -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))