mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-14 17:59:28 +08:00
10 lines
255 B
C
10 lines
255 B
C
|
// By aaronwl 2003-01-28 for mingw-msvcrt
|
||
|
// Public domain: all copyrights disclaimed, absolutely no warranties
|
||
|
|
||
|
#include <stdarg.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int vscanf(const char * __restrict__ format, va_list arg) {
|
||
|
return vfscanf(stdin, format, arg);
|
||
|
}
|