blob: 9d46ab09d506bd96459d02d6302e3634340ba12e [file] [log] [blame]
#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);