* tests/test-c32isprint.c (main): Disable test that fails on mingw/ucrt.
+2024-12-22 Bruno Haible <bruno@clisp.org>
+
+ c32isprint tests: Avoid test failure on mingw/ucrt.
+ * tests/test-c32isprint.c (main): Disable test that fails on mingw/ucrt.
+
2024-12-22 Bruno Haible <bruno@clisp.org>
btowc: Fix declaration on mingw/ucrt.
is = for_character ("\342\200\256", 3);
ASSERT (is == 0);
#endif
- #if !(defined __FreeBSD__ || defined __DragonFly__ || defined __sun)
+ #if !(defined __FreeBSD__ || defined __DragonFly__ || defined __sun || (defined _WIN32 && !defined __CYGWIN__))
/* U+3000 IDEOGRAPHIC SPACE */
is = for_character ("\343\200\200", 3);
ASSERT (is != 0);