blob: c507a2849a77ad13bc2963e0b7c146bca18feb6e [file] [log] [blame]
// By aaronwl 2003-01-28 for mingw-msvcrt.
// Public domain: all copyrights disclaimed, absolutely no warranties.
#include <stdarg.h>
#include <wchar.h>
#include <stdio.h>
int vwscanf(const wchar_t * __restrict__ format, va_list arg) {
return vfwscanf(stdin, format, arg);
}