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