From d5fadf75e4d18df61db41205ace0cda28d98eeaa Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 26 Sep 2000 05:46:01 +0000 Subject: Rationalize use of limits.h, moving the inclusion to Python.h. Add definitions of INT_MAX and LONG_MAX to pyport.h. Remove includes of limits.h and conditional definitions of INT_MAX and LONG_MAX elsewhere. This closes SourceForge patch #101659 and bug #115323. --- Python/ceval.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'Python/ceval.c') diff --git a/Python/ceval.c b/Python/ceval.c index 491a73bdf1..36cdab84e5 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -20,12 +20,6 @@ #include -#ifdef HAVE_LIMITS_H -#include -#else -#define INT_MAX 2147483647 -#endif - /* Turn this on if your compiler chokes on the big switch: */ /* #define CASE_TOO_BIG 1 */ -- cgit v1.2.1