aboutsummaryrefslogtreecommitdiff
path: root/src/stdio/vscanf.c
blob: 54ee3d027d8873cef4be37ac2ec4c4d29c5141eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdio.h>
#include <stdarg.h>

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

weak_alias(vscanf,__isoc99_vscanf);


#ifdef TEST
int
main(void) {
	return 0;
}
#endif