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/bltinmodule.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Python/bltinmodule.c') diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index bbd9969a93..82867e0f43 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -23,6 +23,9 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #ifdef HAVE_UNISTD_H #include #endif +#ifdef HAVE_LIMITS_H +#include +#endif /* Forward */ static PyObject *filterstring Py_PROTO((PyObject *, PyObject *)); -- cgit v1.2.1