* lib/setlocale.c (setlocale_unixlike): Remove redundant #if.
+2018-08-11 Bruno Haible <bruno@clisp.org>
+
+ setlocale: Trivial simplification.
+ * lib/setlocale.c (setlocale_unixlike): Remove redundant #if.
+
2018-08-11 Paul Eggert <eggert@cs.ucla.edu>
verify: port 'assume' to traditional tools
/* The native Windows implementation of setlocale understands the special
locale name "C", but not "POSIX". Therefore map "POSIX" to "C". */
-#if defined _WIN32 && !defined __CYGWIN__
if (locale != NULL && strcmp (locale, "POSIX") == 0)
locale = "C";
-#endif
/* First, try setlocale with the original argument unchanged. */
result = setlocale (category, locale);