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/modsupport.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Python/modsupport.c') diff --git a/Python/modsupport.c b/Python/modsupport.c index 4a206a1334..afecc0e515 100644 --- a/Python/modsupport.c +++ b/Python/modsupport.c @@ -11,6 +11,9 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. /* Module support implementation */ #include "Python.h" +#ifdef HAVE_LIMITS_H +#include +#endif #ifdef MPW /* MPW pushes 'extended' for float and double types with varargs */ typedef extended va_double; -- cgit v1.2.1