Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
stdio
getwchar.c
pretty
plain
permalink
blame
history
•
9 lines
•
135 B
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);