From 41aa8e523d1f81dc4b4d529dd01c59aef350eada Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Mon, 3 Jul 2000 21:39:47 +0000 Subject: Include limits.h if we have it. --- Python/compile.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Python/compile.c') diff --git a/Python/compile.c b/Python/compile.c index d713c7e250..ce7c0e484d 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -33,6 +33,9 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #include "structmember.h" #include +#ifdef HAVE_LIMITS_H +#include +#endif /* Three symbols from graminit.h are also defined in Python.h, with Py_ prefixes to their names. Python.h can't include graminit.h -- cgit v1.2.1