summaryrefslogtreecommitdiff
path: root/Parser/myreadline.c
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2000-07-03 21:39:47 +0000
committerJack Jansen <jack.jansen@cwi.nl>2000-07-03 21:39:47 +0000
commit41aa8e523d1f81dc4b4d529dd01c59aef350eada (patch)
tree41635a05a45a6d8cfbe240570bd8f88fa341dcc1 /Parser/myreadline.c
parentee398fa058555d3229e48c323247f60f6f560313 (diff)
downloadcpython-git-41aa8e523d1f81dc4b4d529dd01c59aef350eada.tar.gz
Include limits.h if we have it.
Diffstat (limited to 'Parser/myreadline.c')
-rw-r--r--Parser/myreadline.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/Parser/myreadline.c b/Parser/myreadline.c
index 22a05cfc96..96749b2f03 100644
--- a/Parser/myreadline.c
+++ b/Parser/myreadline.c
@@ -19,6 +19,9 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*/
#include "Python.h"
+#ifdef HAVE_LIMITS_H
+#include <limits.h>
+#endif
int (*PyOS_InputHook)() = NULL;