Commit 358d938a authored by Neal Norwitz's avatar Neal Norwitz

Remove INT_MIN that came from the AST merge.

INT_MIN is used in Python/compile.c, but it was also used
in Objects/abstract.c Python/getargs.c.  If we need it for compile.c,
we can get it from the same place as the other files.
parent 5f5153e8
...@@ -583,7 +583,6 @@ typedef struct fd_set { ...@@ -583,7 +583,6 @@ typedef struct fd_set {
#ifndef INT_MAX #ifndef INT_MAX
#define INT_MAX 2147483647 #define INT_MAX 2147483647
#define INT_MIN (-INT_MAX - 1)
#endif #endif
#ifndef LONG_MAX #ifndef LONG_MAX
......
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