diff options
Diffstat (limited to 'Python/codecs.c')
-rw-r--r-- | Python/codecs.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Python/codecs.c b/Python/codecs.c index 20df522350..27331ab66b 100644 --- a/Python/codecs.c +++ b/Python/codecs.c @@ -10,6 +10,9 @@ Written by Marc-Andre Lemburg (mal@lemburg.com). #include "Python.h" #include <ctype.h> +#ifdef HAVE_LIMITS_H +#include <limits.h> +#endif /* --- Globals ------------------------------------------------------------ */ |