diff options
author | Guido van Rossum <guido@python.org> | 1996-08-21 23:38:24 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-08-21 23:38:24 (GMT) |
commit | c1d50538827f16893f4ccc440ccca8789cb2611c (patch) | |
tree | e187f16061bb2d96b2aec2a68da9217af955b17a /Python | |
parent | 4f903463b8a9f306d033d4529f7a0d57beac914e (diff) | |
download | cpython-c1d50538827f16893f4ccc440ccca8789cb2611c.zip cpython-c1d50538827f16893f4ccc440ccca8789cb2611c.tar.gz cpython-c1d50538827f16893f4ccc440ccca8789cb2611c.tar.bz2 |
Add needed #include <ctype.h>
Diffstat (limited to 'Python')
-rw-r--r-- | Python/getargs.c | 2 |
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 *, ...)); |