| commit | 41aa8e523d1f81dc4b4d529dd01c59aef350eada | [log] [tgz] |
|---|---|---|
| author | Jack Jansen <jack.jansen@cwi.nl> | Mon Jul 03 21:39:47 2000 +0000 |
| committer | Jack Jansen <jack.jansen@cwi.nl> | Mon Jul 03 21:39:47 2000 +0000 |
| tree | 41635a05a45a6d8cfbe240570bd8f88fa341dcc1 | |
| parent | ee398fa058555d3229e48c323247f60f6f560313 [diff] [blame] |
Include limits.h if we have it.
diff --git a/Python/codecs.c b/Python/codecs.c index 20df522..27331ab 100644 --- a/Python/codecs.c +++ b/Python/codecs.c
@@ -10,6 +10,9 @@ #include "Python.h" #include <ctype.h> +#ifdef HAVE_LIMITS_H +#include <limits.h> +#endif /* --- Globals ------------------------------------------------------------ */