]> granicus.if.org Git - python/commitdiff
Jack Jansen, Mac patch:
authorGuido van Rossum <guido@python.org>
Sat, 1 Jul 2000 01:09:43 +0000 (01:09 +0000)
committerGuido van Rossum <guido@python.org>
Sat, 1 Jul 2000 01:09:43 +0000 (01:09 +0000)
Include limits.h if we have it.

Modules/arraymodule.c
Python/getargs.c

index 7bc7e738bd7008a5e2da2a2a349229bc9e5b2add..595d930f0db6eb72925ee4bac6bfc624f2f18ecd 100644 (file)
@@ -22,6 +22,9 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
 #include <sys/types.h>         /* For size_t */
 #endif /* DONT_HAVE_SYS_TYPES_H */
 #endif /* !STDC_HEADERS */
+#ifdef HAVE_LIMITS_H
+#include <limits.h>
+#endif /* HAVE_LIMITS_H */
 
 struct arrayobject; /* Forward */
 
index c1a5d6b8e01ca5427d1219b9ccf3f36c14f78ae6..b213ba2adb69b21c1addeee345d45df7d5cc26a2 100644 (file)
@@ -18,6 +18,9 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
 #include "Python.h"
 
 #include <ctype.h>
+#ifdef HAVE_LIMITS_H
+#include <limits.h>
+#endif
 
 
 int PyArg_Parse Py_PROTO((PyObject *, char *, ...));