From: Jim Meyering Date: Fri, 14 Jul 2000 13:56:07 +0000 (+0000) Subject: (mbrtowc): Do not use HAVE_WCHAR_H in the definition. X-Git-Tag: FILEUTILS-4_0x~69 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e4dac83b0d6b699311faee1967b42f9a94c6a761;p=thirdparty%2Fcoreutils.git (mbrtowc): Do not use HAVE_WCHAR_H in the definition. Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT, to decide whether to define the BeOS workaround macro; this adjusts to the change to AC_MBSTATE_T. --- diff --git a/lib/quotearg.c b/lib/quotearg.c index 37c2aa3698..b92d3b64ab 100644 --- a/lib/quotearg.c +++ b/lib/quotearg.c @@ -63,9 +63,9 @@ # include #endif -#if HAVE_MBRTOWC && HAVE_WCHAR_H +#if HAVE_MBRTOWC size_t mbrtowc (); -# if !HAVE_MBSTATE_T_OBJECT +# ifdef mbstate_t # define mbrtowc(pwc, s, n, ps) (mbrtowc) (pwc, s, n, 0) # endif #else