From cf3c9b2886cdec2452d68952b9f38d6209585ce5 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/codecs.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Python/codecs.c') diff --git a/Python/codecs.c b/Python/codecs.c index 20df522350..27331ab66b 100644 --- a/Python/codecs.c +++ b/Python/codecs.c @@ -10,6 +10,9 @@ Written by Marc-Andre Lemburg (mal@lemburg.com). #include "Python.h" #include +#ifdef HAVE_LIMITS_H +#include +#endif /* --- Globals ------------------------------------------------------------ */ -- cgit v1.2.1