rename __simple_malloc.c to lite_malloc.c - yes this affects behavior!
[musl] / src / stdio / vwscanf.c
1 #include <stdio.h>
2 #include <stdarg.h>
3 #include <wchar.h>
4
5 int vwscanf(const wchar_t *fmt, va_list ap)
6 {
7         return vfwscanf(stdin, fmt, ap);
8 }