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 <stdio.h>
11
__ms_vscanf(const char * __restrict__ format,va_list arg)12 int __ms_vscanf(const char * __restrict__ format, va_list arg)
13 {
14 return __ms_vfscanf(stdin, format, arg);
15 }
16