summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-07-01 01:09:43 +0000
committerGuido van Rossum <guido@python.org>2000-07-01 01:09:43 +0000
commit0fb1acb32a72586725f0fd5154ba99cbf91b70d2 (patch)
tree8a778af4ceaab7e35f781b5d507e71c206bb7afe
parentd4c3b0a23e7935b4657fada35cb221d65bf70e39 (diff)
downloadcpython-0fb1acb32a72586725f0fd5154ba99cbf91b70d2.tar.gz
Jack Jansen, Mac patch:
Include limits.h if we have it.
-rw-r--r--Modules/arraymodule.c3
-rw-r--r--Python/getargs.c3
2 files changed, 6 insertions, 0 deletions
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c
index 7bc7e738bd..595d930f0d 100644
--- a/Modules/arraymodule.c
+++ b/Modules/arraymodule.c
@@ -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 */
diff --git a/Python/getargs.c b/Python/getargs.c
index c1a5d6b8e0..b213ba2adb 100644
--- a/Python/getargs.c
+++ b/Python/getargs.c
@@ -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 *, ...));