projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
reverse definition dependency between PAGESIZE and PAGE_SIZE
[oweals/musl.git]
/
src
/
stdio
/
vwscanf.c
1
#include <stdio.h>
2
#include <stdarg.h>
3
#include <wchar.h>
4
#include "libc.h"
5
6
int vwscanf(const wchar_t *restrict fmt, va_list ap)
7
{
8
return vfwscanf(stdin, fmt, ap);
9
}
10
11
weak_alias(vwscanf,__isoc99_vwscanf);