Commit bab9559d authored by Martin v. Löwis's avatar Martin v. Löwis

Include wctype.h.

parent 19ff4464
...@@ -26,10 +26,11 @@ static PyStringObject *nullstring; ...@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment