rework langinfo code for ABI compat and for use by time code
[musl] / src / stdio / vscanf.c
1 #include <stdio.h>
2 #include <stdarg.h>
3 #include "libc.h"
4
5 int vscanf(const char *restrict fmt, va_list ap)
6 {
7         return vfscanf(stdin, fmt, ap);
8 }
9
10 weak_alias(vscanf,__isoc99_vscanf);