]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(mbrtowc, mbsinit):
authorJim Meyering <jim@meyering.net>
Sat, 17 Feb 2001 10:39:43 +0000 (10:39 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 17 Feb 2001 10:39:43 +0000 (10:39 +0000)
Remove workaround macros for hosts that have mbrtowc but not
mbstate_t, as we now insist on proper declarations for both
before using mbrtowc.

lib/quotearg.c

index a668a68b574464e6922f995af38afd7289890e58..2a7ba4c445ba42b8aaf913e810c41ce8e5be8c18 100644 (file)
 # 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.  */