fix scanf handling of "0" (followed by immediate EOF) with "%x"
[musl] / src / stdio / vwprintf.c
1 #include <stdio.h>
2 #include <wchar.h>
3
4 int vwprintf(const wchar_t *fmt, va_list ap)
5 {
6         return vfwprintf(stdout, fmt, ap);
7 }