repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
remove long-obsolete clang workarounds from mips* syscall_arch.h files
[musl.git]
/
src
/
stdio
/
vscanf.c
blob
43892f01b304d97a55a8c4ff512140a66edb11bf
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
);