summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-08-21 23:38:24 (GMT)
committerGuido van Rossum <guido@python.org>1996-08-21 23:38:24 (GMT)
commitc1d50538827f16893f4ccc440ccca8789cb2611c (patch)
treee187f16061bb2d96b2aec2a68da9217af955b17a
parent4f903463b8a9f306d033d4529f7a0d57beac914e (diff)
downloadcpython-c1d50538827f16893f4ccc440ccca8789cb2611c.zip
cpython-c1d50538827f16893f4ccc440ccca8789cb2611c.tar.gz
cpython-c1d50538827f16893f4ccc440ccca8789cb2611c.tar.bz2
Add needed #include <ctype.h>
-rw-r--r--Python/getargs.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/getargs.c b/Python/getargs.c
index 8723423..f765a7c 100644
--- a/Python/getargs.c
+++ b/Python/getargs.c
@@ -31,6 +31,8 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "allobjects.h"
+#include <ctype.h>
+
int getargs PROTO((object *, char *, ...));
int newgetargs PROTO((object *, char *, ...));