blob: 9f9d8681a4660bc1ba68685c9740b3ed05b5f633 [file] [log] [blame]
#include <stdio.h>
#include <stdarg.h>
#include "libc.h"
int vscanf(const char* restrict fmt, va_list ap) {
return vfscanf(stdin, fmt, ap);
}
weak_alias(vscanf, __isoc99_vscanf);