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.
This commit is contained in:
Neal Norwitz 2005-10-21 04:33:02 +00:00
parent 5f5153e871
commit 358d938aaa
1 changed files with 0 additions and 1 deletions

View File

@ -583,7 +583,6 @@ typedef struct fd_set {
#ifndef INT_MAX
#define INT_MAX 2147483647
#define INT_MIN (-INT_MAX - 1)
#endif
#ifndef LONG_MAX