projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix treatment by fgetws of encoding errors as eof
[oweals/musl.git]
/
src
/
stdio
/
getwc.c
1
#include "stdio_impl.h"
2
#include <wchar.h>
3
4
wint_t getwc(FILE *f)
5
{
6
return fgetwc(f);
7
}