summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-06-19 04:33:30 (GMT)
committerGuido van Rossum <guido@python.org>1998-06-19 04:33:30 (GMT)
commit5cd70f4f66f2424e7eec431c9e96270e341a5e55 (patch)
tree8e89402f98eeb4e71ffd41d01bdce0778f93e2f7 /Modules
parent40ae0e93cd9c0caad056e73f2055f893b674a635 (diff)
downloadcpython-5cd70f4f66f2424e7eec431c9e96270e341a5e55.zip
cpython-5cd70f4f66f2424e7eec431c9e96270e341a5e55.tar.gz
cpython-5cd70f4f66f2424e7eec431c9e96270e341a5e55.tar.bz2
Added <ctype.h>, needed for Windows.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_localemodule.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/_localemodule.c b/Modules/_localemodule.c
index 69621e3..1b4aa9d 100644
--- a/Modules/_localemodule.c
+++ b/Modules/_localemodule.c
@@ -13,6 +13,7 @@ This software comes with no warranty. Use at your own risk.
#include <locale.h>
#include <string.h>
#include <limits.h>
+#include <ctype.h>
#include "Python.h"
#ifdef macintosh
char *strdup Py_PROTO((char *));