rewrite popen to use posix_spawn instead of fragile vfork hacks
[musl] / src / stdio / fgetwc.c
index c990545..8626d54 100644 (file)
@@ -1,4 +1,6 @@
 #include "stdio_impl.h"
+#include <wchar.h>
+#include <errno.h>
 
 wint_t __fgetwc_unlocked(FILE *f)
 {
@@ -12,7 +14,7 @@ wint_t __fgetwc_unlocked(FILE *f)
 
        /* Convert character from buffer if possible */
        if (f->rpos < f->rend) {
-               l = mbrtowc(&wc, f->rpos, f->rend - f->rpos, &st);
+               l = mbrtowc(&wc, (void *)f->rpos, f->rend - f->rpos, &st);
                if (l+2 >= 2) {
                        f->rpos += l + !l; /* l==0 means 1 byte, null */
                        return wc;
@@ -23,18 +25,17 @@ wint_t __fgetwc_unlocked(FILE *f)
                }
        } else l = -2;
 
-       /* Convert character byte-by-byte from __uflow */
+       /* Convert character byte-by-byte */
        while (l == -2) {
-               b = c = __uflow(f);
+               b = c = getc_unlocked(f);
                if (c < 0) {
                        if (!mbsinit(&st)) errno = EILSEQ;
                        return WEOF;
                }
-               l = mbrtowc(&wc, &b, 1, &st);
+               l = mbrtowc(&wc, (void *)&b, 1, &st);
                if (l == -1) return WEOF;
        }
 
-       FUNLOCK(f);
        return wc;
 }