Include wctype.h.

This commit is contained in:
Martin v. Löwis 2002-10-07 18:26:16 +00:00
parent 19ff44643f
commit bab9559d12
1 changed files with 2 additions and 1 deletions

View File

@ -26,10 +26,11 @@ static PyStringObject *nullstring;
static PyObject *interned; 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 # define PRINT_MULTIBYTE_STRING
# include <locale.h> # include <locale.h>
# include <wchar.h> # include <wchar.h>
# include <wctype.h>
# if defined(HAVE_ISWPRINT) # if defined(HAVE_ISWPRINT)
# define _isprint iswprint # define _isprint iswprint
# else # else