mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 04:49:25 +08:00
10 lines
262 B
C
10 lines
262 B
C
|
// By aaronwl 2003-01-28 for mingw-msvcrt.
|
||
|
// Public domain: all copyrights disclaimed, absolutely no warranties.
|
||
|
|
||
|
#include <stdarg.h>
|
||
|
#include <wchar.h>
|
||
|
|
||
|
int vwscanf(const wchar_t * __restrict__ format, va_list arg) {
|
||
|
return vfwscanf(stdin, format, arg);
|
||
|
}
|