Fix a compiler warning: in and out are unused in _Py_char2wchar() if
HAVE_MBRTOWC is not defined
diff --git a/Python/fileutils.c b/Python/fileutils.c
index 3c04e49..bb0cd43 100644
--- a/Python/fileutils.c
+++ b/Python/fileutils.c
@@ -254,9 +254,9 @@
     wchar_t *res;
     size_t argsize;
     size_t count;
+#ifdef HAVE_MBRTOWC
     unsigned char *in;
     wchar_t *out;
-#ifdef HAVE_MBRTOWC
     mbstate_t mbs;
 #endif