diff options
author | Guido van Rossum <guido@python.org> | 2000-07-01 01:09:43 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-07-01 01:09:43 (GMT) |
commit | db67739d4f5dc66c8c7659dcd88ada3ef5c818c9 (patch) | |
tree | c8acf29a912752329052695a21486ca0233e22dd /Python | |
parent | f12d7a02a02845bfec241d33c480ddad6a82df9e (diff) | |
download | cpython-db67739d4f5dc66c8c7659dcd88ada3ef5c818c9.zip cpython-db67739d4f5dc66c8c7659dcd88ada3ef5c818c9.tar.gz cpython-db67739d4f5dc66c8c7659dcd88ada3ef5c818c9.tar.bz2 |
Jack Jansen, Mac patch:
Include limits.h if we have it.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/getargs.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Python/getargs.c b/Python/getargs.c index c1a5d6b..b213ba2 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 *, ...)); |