diff options
-rw-r--r-- | lib/quotearg.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/quotearg.c b/lib/quotearg.c index a668a68b5..2a7ba4c44 100644 --- a/lib/quotearg.c +++ b/lib/quotearg.c @@ -66,13 +66,7 @@ # include <wchar.h> #endif -#if HAVE_MBRTOWC -size_t mbrtowc (); -# ifdef mbstate_t -# define mbrtowc(pwc, s, n, ps) (mbrtowc) (pwc, s, n, 0) -# define mbsinit(ps) 1 -# endif -#else +#if !HAVE_MBRTOWC /* Disable multibyte processing entirely. Since MB_CUR_MAX is 1, the other macros are defined only for documentation and to satisfy C syntax. */ |