*/
#include "Python.h"
+#ifdef HAVE_LIMITS_H
+#include <limits.h>
+#endif
int (*PyOS_InputHook)() = NULL;
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
+#ifdef HAVE_LIMITS_H
+#include <limits.h>
+#endif
/* Forward */
static PyObject *filterstring Py_PROTO((PyObject *, PyObject *));
#include "Python.h"
#include <ctype.h>
+#ifdef HAVE_LIMITS_H
+#include <limits.h>
+#endif
/* --- Globals ------------------------------------------------------------ */
#include "structmember.h"
#include <ctype.h>
+#ifdef HAVE_LIMITS_H
+#include <limits.h>
+#endif
/* Three symbols from graminit.h are also defined in Python.h, with
Py_ prefixes to their names. Python.h can't include graminit.h
/* Module support implementation */
#include "Python.h"
+#ifdef HAVE_LIMITS_H
+#include <limits.h>
+#endif
#ifdef MPW /* MPW pushes 'extended' for float and double types with varargs */
typedef extended va_double;