From bab9559d12ede8934bdf86c434a4b76cf1138277 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Mon, 7 Oct 2002 18:26:16 +0000 Subject: [PATCH] Include wctype.h. --- Objects/stringobject.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Objects/stringobject.c b/Objects/stringobject.c index c11a362d251..932ef51a96e 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -26,10 +26,11 @@ static PyStringObject *nullstring; static PyObject *interned; -#if defined(HAVE_MBTOWC) && defined(HAVE_WCHAR_H) +#if defined(HAVE_MBTOWC) && defined(HAVE_WCHAR_H) && defined(HAVE_WCTYPE_H) # define PRINT_MULTIBYTE_STRING # include # include +# include # if defined(HAVE_ISWPRINT) # define _isprint iswprint # else