1#include <stdio.h>
2#include <stdarg.h>
3#include "libc.h"
4
5int vscanf(const char *restrict fmt, va_list ap)
6{
7	return vfscanf(stdin, fmt, ap);
8}
9
10weak_alias(vscanf,__isoc99_vscanf);
11