remove long-obsolete clang workarounds from mips* syscall_arch.h files
[musl.git] / src / stdio / vscanf.c
blob43892f01b304d97a55a8c4ff512140a66edb11bf
1 #include <stdio.h>
2 #include <stdarg.h>
3 #include "libc.h"
5 int vscanf(const char *restrict fmt, va_list ap)
7 return vfscanf(stdin, fmt, ap);
10 weak_alias(vscanf,__isoc99_vscanf);