+2010-04-04 Hauke Fath <hauke@espresso.rhein-neckar.de> (tiny change)
+ Bruno Haible <bruno@clisp.org>
+
+ wchar: Port to NetBSD 1.5.
+ * lib/wchar.in.h (WEOF): Provide fallback also when wint_t exists.
+ * lib/wctype.in.h (WEOF): Likewise.
+
2010-04-04 Hauke Fath <hauke@espresso.rhein-neckar.de> (tiny change)
Bruno Haible <bruno@clisp.org>
/* The definition of _GL_WARN_ON_USE is copied here. */
-/* Define wint_t. (Also done in wctype.in.h.) */
+/* Define wint_t and WEOF. (Also done in wctype.in.h.) */
#if !@HAVE_WINT_T@ && !defined wint_t
# define wint_t int
# ifndef WEOF
# define WEOF -1
# endif
+#else
+# ifndef WEOF
+# define WEOF ((wint_t) -1)
+# endif
#endif
/* The definition of _GL_WARN_ON_USE is copied here. */
-/* Define wint_t. (Also done in wchar.in.h.) */
+/* Define wint_t and WEOF. (Also done in wchar.in.h.) */
#if !@HAVE_WINT_T@ && !defined wint_t
# define wint_t int
# ifndef WEOF
# define WEOF -1
# endif
+#else
+# ifndef WEOF
+# define WEOF ((wint_t) -1)
+# endif
#endif