changeset 2739:9a19b8afa1d8

(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.
author Jim Meyering <jim@meyering.net>
date Fri, 14 Jul 2000 13:56:07 +0000
parents cd757872b012
children b9190b359686
files lib/quotearg.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lib/quotearg.c
+++ b/lib/quotearg.c
@@ -63,9 +63,9 @@
 # include <wchar.h>
 #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