1 /** 2 * This file has no copyright assigned and is placed in the Public Domain. 3 * This file is part of the mingw-w64 runtime package. 4 * No warranty is given; refer to the file DISCLAIMER.PD within this package. 5 */ 6 // By aaronwl 2003-01-28 for mingw-msvcrt. 7 // Public domain: all copyrights disclaimed, absolutely no warranties. 8 9 #include <stdarg.h> 10 #include <wchar.h> 11 #include <stdio.h> 12 __ms_vwscanf(const wchar_t * __restrict__ format,va_list arg)13int __ms_vwscanf (const wchar_t * __restrict__ format, va_list arg) 14 { 15 return __ms_vfwscanf(stdin, format, arg); 16 } 17