summaryrefslogtreecommitdiff
path: root/src/stdio/vscanf.c
blob: 189ae04f1a9cb17717b41a8b9e03452b6496ba44 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

int vscanf(const char * restrict format, va_list arg)
{
	return vfscanf(stdin, format, arg);
}

/*
STDC(199901)
*/