fix getc - the classic error of trying to store EOF+0-255 in a char type..
[musl] / src / stdio / vscanf.c
1 #include <stdio.h>
2 #include <stdarg.h>
3
4 int vscanf(const char *fmt, va_list ap)
5 {
6         return vfscanf(stdin, fmt, ap);
7 }