rewrite popen to use posix_spawn instead of fragile vfork hacks
[musl] / src / stdio / vwscanf.c
1 #include <stdio.h>
2 #include <stdarg.h>
3 #include <wchar.h>
4
5 int vwscanf(const wchar_t *restrict fmt, va_list ap)
6 {
7         return vfwscanf(stdin, fmt, ap);
8 }