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
rewrite core of the glob implementation for correctness & optimization
[musl.git]
/
src
/
stdio
/
getwchar.c
blob
bd89e0ec9411074489e847183b6f1aec4c6af2de
1
#include
"stdio_impl.h"
2
#include <wchar.h>
3
4
wint_t
getwchar
(
void
)
5
{
6
return
fgetwc
(
stdin
);
7
}
8
9
weak_alias
(
getwchar
,
getwchar_unlocked
);