summaryrefslogtreecommitdiff
path: root/src/stdio/vscanf.c
blob: 990a85840974f5650e582b0a0d48e73196844665 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#if 0

#include <stdio.h>

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

/*
STDC(199901)
*/


#endif