math: x86_64 version of expl, fixed some comments in the i386 version
[musl] / src / stdio / vscanf.c
1 #include <stdio.h>
2 #include <stdarg.h>
3
4 int vscanf(const char *restrict fmt, va_list ap)
5 {
6         return vfscanf(stdin, fmt, ap);
7 }