* lib/wctype.in.h (iswblank): Declare using _GL_FUNCDECL_RPL or
_GL_FUNCDECL_SYS.
+2010-12-25 Bruno Haible <bruno@clisp.org>
+
+ iswblank: Fix C++ link error on Solaris 8.
+ * lib/wctype.in.h (iswblank): Declare using _GL_FUNCDECL_RPL or
+ _GL_FUNCDECL_SYS.
+
2010-12-25 Bruno Haible <bruno@clisp.org>
unistd: Fix C++ link error on Solaris 8.
# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
# define iswblank rpl_iswblank
# endif
-extern int rpl_iswblank (wint_t wc);
+_GL_FUNCDECL_RPL (iswblank, int, (wint_t wc));
# else
-extern int iswblank (wint_t wc);
+_GL_FUNCDECL_SYS (iswblank, int, (wint_t wc));
# endif
#endif