xref: /third_party/musl/src/stdio/vscanf.c (revision 570af302)
1#include <stdio.h>
2#include <stdarg.h>
3
4int vscanf(const char *restrict fmt, va_list ap)
5{
6	return vfscanf(stdin, fmt, ap);
7}
8
9weak_alias(vscanf,__isoc99_vscanf);
10