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
add PTHREAD_NULL
[musl.git]
/
src
/
stdio
/
vwscanf.c
blob
5a3931e1918d43df50fb7730ca18e31c69a3867f
1
#include <stdio.h>
2
#include <stdarg.h>
3
#include <wchar.h>
4
5
int
vwscanf
(
const wchar_t
*
restrict fmt
,
va_list
ap
)
6
{
7
return
vfwscanf
(
stdin
,
fmt
,
ap
);
8
}
9
10
weak_alias
(
vwscanf
,
__isoc99_vwscanf
);