aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/mingw/stdio/vscanf.c
blob: f255e6825c2a678bd9ed725bc0d14cc0bb57856b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * This file has no copyright assigned and is placed in the Public Domain.
 * This file is part of the mingw-w64 runtime package.
 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
 */
//  By aaronwl 2003-01-28 for mingw-msvcrt
//  Public domain: all copyrights disclaimed, absolutely no warranties

#include <stdarg.h>
#include <stdio.h>

int __ms_vscanf(const char * __restrict__ format, va_list arg)
{
  return __ms_vfscanf(stdin, format, arg);
}