Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
stdio
putwchar.c
pretty
plain
permalink
blame
history
•
9 lines
•
144 B
1
#include "stdio_impl.h"
2
#include <wchar.h>
3
4
wint_t putwchar(wchar_t c)
5
{
6
	return fputwc(c, stdout);
7
}
8
9
weak_alias(putwchar, putwchar_unlocked);